djungle
08-04-2004, 06:48 AM
Hi,
I'm having trouble sending variables back and forth from flash5 to php4
I am using this lil' contact form to test things out.
on (release) {
if (!Name.length) {
EmailStatus = "Please enter your name";
} else {
this.loadVariables("contact.php", 0, "POST");
EmailStatus = "Sending...please wait";
}
}
Since I was recieving blank emails, I changed the php code so that it just returns the variables recieved from flash.
<?php
$Name = $HTTP_POST_VARS["Name"];
Print "_root.Mail.EmailStatus=$Name";
?>
But its not returning anything...
Anyone know why or what's going on? :confused:
I'm having trouble sending variables back and forth from flash5 to php4
I am using this lil' contact form to test things out.
on (release) {
if (!Name.length) {
EmailStatus = "Please enter your name";
} else {
this.loadVariables("contact.php", 0, "POST");
EmailStatus = "Sending...please wait";
}
}
Since I was recieving blank emails, I changed the php code so that it just returns the variables recieved from flash.
<?php
$Name = $HTTP_POST_VARS["Name"];
Print "_root.Mail.EmailStatus=$Name";
?>
But its not returning anything...
Anyone know why or what's going on? :confused: