in frame 1 I’ve a dynamictextfield named “example”.
Also in frame 1 there’s this actionscript:
loadVariables (“myPHP.php”, this, “POST”);
stop();
There are no more frames in this .fla.
In myPHP.php there’s the following script:
<?
$example = ‘12’;
print “&result=Okay&example=$example&”;
?>
When I publish this the dynamictextfield doesnt
say 12. What am I doing wrong?
Thanx in advanced.