Hy!
I am in trouble with flash + php.
I want to past vars from flash to PHP…I have an input box, with var: name
then when the button submit is pressed, I have this code:
[AS]
on (release) {
getURL (“http://localhost/vars.php”, “_blank”, “POST”);
}
[/AS]
and on php script I have this:
<?php
$name = $_POST['name'];
print ("Your name is || $name ||");
?>
but the name isn’t past to the script
any help please, thks