i create the ac file and get the variable from php but that tel undefined see my coding and give me asp this is my coding
AS coding
myLoadVars = new LoadVars();
myLoadVars.specificvariable = “Value”;
// specificvariable value will be submited to the php file
myLoadVars.sendAndLoad(“http://localhost/flash_tour.php”, this, “POST”);
//now, let us set onLoad!
trace(myLoadVars.status1)
myLoadVars.onLoad = function(success) {
myTextBox.text = this.status1;
};
this is php coding
<?php
$name_test = “Joe”;
echo “&status1 = $name_test”;
?>
what is wrong here pl