Forum Moderators: coopster
on (release) {
c = new LoadVars();
c.send("script.php", "_parent", "POST");
}
in the php page i type out all the script and have tried identifying the posted variables with both $_POST and $HTTP_POST_VARS. the php script is called but the variables are never passed. i know this because when i go...
if (isset($_POST['fieldname'])) { echo "yes"; }
else { echo "no"; }
...it will echo "no".
does this explain my problem clearly enough?
any help greatly appreciated.