ok.. i've been trying to pass the contents of a text input to php with no luck. I have "Var: usr" and "Var: pwd" in the text input properties.
on (release, keyPress "<Enter>") {
if (usr != "" && pwd != "") {
// i've tried all of the following. which on is it!!!
loadVariablesNum("check_usr.php?usr=usr&pwd=pwd", 0);
loadVariablesNum("check_usr.php, "self", "Post");
getURL("check_usr.php, "self", "Post");
getURL("check_usr.php", 0, "POST");
getURL("check_usr.php?usr=usr&pwd=pwd", 0);
}
}
the loadVariablesNum method doesn't seem to go to the page. It only goes to the page with getURL.
in php i have
$GET['usr'];
$GET['pwd'];