John Nichel wrote:
[EMAIL PROTECTED] wrote:
The first two of these 3 echo statements work. But my last echo doesn't. 'username' is the name of the element I want to echo. To the right of each is what I see echoed.
echo $_SERVER['REQUEST_METHOD']; echos -> POST echo $_POST; echos -> Array echo $_POST['username']; echos -> nothing
How are you setting $_POST['username']? Let's see the code for the form.
Members in $_POST array are set (mostly) by submitting a form with POST method, make sure your form is not submitting by GET.
-- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php