Hi,
when I run the following code in the getvars.php and click the submit button in flash ----
<?
// Receiving the variables.
$name = $_POST[‘name’];
$age = $_POST[‘age’];
$eye = $_POST[‘eye’];
//Printing out the variables.
echo "
Hi $name .<br>
You are $age years old.<br>
You have$eye eyes.";
?>
------ all i got is like this
Hi .
You are years old.
You have eyes.
My flash code is like this on frame 1:
submit.onPress = function() {
getURL(“getvars.php”, “_blank”, “POST”);
};
Where did i make mistake?
Any help on that?