below is the code which i have put in flash on sumbit
on (release, keyPress "<Enter>")
{
var myVars:LoadVars = new LoadVars();
myVars.variable1 = "name";
myVars.send("certificate.php","POST");
gotoAndStop(4);
}
"name" is my instance of inputtext.
and this code is written in php :
<?php
// Receiving the variables.
$name = $_POST['name'];
// Printing out the variables.
echo $name;
?>
i don't want the php page to open in middle i want it to open in the end link.do help me.

New Topic/Question
Reply



MultiQuote



|