Hi all,
I am having a nightmare accessing my POST variables. I can red them if I use
the GET method on my form, but POST is always blank
I have
while( list($key, $value) = each ($_POST)){
print "$key $value<br>";
}
print "_REQUEST: "; print_r($_REQUEST);
print "_GET: "; print_r($_GET);
print "_POST: "; print_r($_POST);
at the top which tells me its not working.
I have a workaround using perl, but I need to sort this once and for only
uing php
What have I forgotten?
Please help, and thanks if you can!
Jules
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php