Help! im trying to send some variables from an swf to a simple php script and then send them back. Currently im using an input field called input....and an output field called output (good naming!) in flash.....u type in a word in the input field and click send button which does this =
on (release) {
loadVariablesNum("http://MYDOMAIN/phpinfo.php", 0, "GET");
}
the php looks like this =
<?php
//THIS JUST ADDS SOME TEXT TO THE VARIABLE
$input.=" from php"
//THIS CREATES THE VARIABLE TO BE DISPLAYED IN THE DYNAMIC TXT FIELD CALLED OUTPUT BACK
IN FLASH
$output= "output=$input";
echo $output;
?>
It doesnt seem to work...cant anyone see where im going wrong?