Hello,
I have problem loading page after pressing the button.
submit.onPress = function () {
getURL (“localhost/getVars.php”,"_blank", “POST”);
}
Php code:
<?
// Receiving the variables.
$name = $_POST[‘name’];
$age = $_POST[‘age’];
$eye = $_POST[‘eye’];
// Printing out the variables.
print "Your name is ". $name . “.”;
print “You are “. $age .” years old.”;
print “You have “. $eye .” eyes.”;
?>
It works when I place it in browser.