Hi Chris

print_r($_REQUEST); (is this what you mean by HTTP Request?)
print_r($_POST);
print_r($_GET);

all give Array()

its apache release 10327100 (is that what you mean?)

If I change the form method to GET works, and we get

REQUEST: Array ( [username] => aa [password] => aa ) 
_GET: Array ( [username] => aa [password] => aa )
_POST: Array ( ) 




> Do you have a way to capture the raw HTTP? I'd like to see:
> 
> 1. The HTTP Request
> 2. The output of print_r($_POST)
> 3. What Web server you're using (and version)
> 
> With this, I feel certain that we can figure something out.
> 
> Chris

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to