[PHP] Re: stuck n00b

2002-10-01 Thread Jome

 ?php
 echo $HTTP_SERVER_VARS['userName'];
 ?

Make it $_POST['userName'] (or $HTTP_POST_VARS['userName'], but that's
deprecated).

   Jome



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




[PHP] Re: stuck n00b

2002-10-01 Thread Chris Nielsen

Well, $_POST['userName'] is now working, but I could have sworn I was trying
that last night and it was returning the same error. Oh well, thanks for the
help guys.

Chris Nielsen [EMAIL PROTECTED] wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
 I have a simple form:

 form action=addUser.php method=post
   Enter Username:
   input type=text name=userNamebrbr
   input type=submit value=Submit
 /form

 Submits to addUser.php:

 ?php
 echo $HTTP_SERVER_VARS['userName'];
 ?

 Returns this error in my browser:

 Notice: Undefined index: userName in E:\Inetpub\wwwroot\Test\addUser.php
on
 line 11

 Is there a setting in my php.ini file I need to change? register_globals
is
 off, as that seems to be the preferred method now. But that's my issue,
 trying to access this external variable. $_REQUEST doesn't work. $_POST
 doesn't either. I have other scripts that it's working in, but I may not
 know what I'm saying here.

 PHP 4.2.3 on IIS (personal web server or whatever it's called) on WinXP
Pro.

 Thanks for any help you can give.






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