i know its not dreamweaver.. but i had no idea where else to put it.
heres the info, simple enough since im just learning to use php with flash.. any ideas on why its not resolving ($theName) to = "rob" ??:
actionscript:
dump=new LoadVars();
dump.name="rob";
dump.sex="male";
dump.onLoad=translate;
dump.sendAndLoad("count.php",dump,"POST");
function translate(){
trace(dump.concat);
}
php:
<?
$theName=$_POST['name'];
echo "&concat=$theName&";
?>
output from flash:
$theName
.. it wont reslove(or whatever word) the variable
any ideas on what it can be?