hi! im having problem loading a dynamic variable from php to flashMX…
in php:----------------------
$myStatus=“Okay”;
“status=”.$myStatus;
in flash:----------------------
loadVariables(“test.php”,_root, “POST”);
trace(status);
the output is:
status=[COLOR=blue]".$myStatus;[/COLOR]
so how can i get the “real” value of $status? that instead of ".$myStatus; it will give me “Okay”… the value of the variable is all i want not the variable name or something…
please help me out… huh huh…