> These are some of the errors I am getting
> 
> Notice: Undefined index: login in
> C:\Inetpub\wwwroot\xxxx.xxxx.xxxx\login\checklogin.php on line 74
> 
> and 75, and other similar errors.
> 
> Line 74 is: $login = $HTTP_SESSION_VARS['login'];
> Line 75 is: $password = $HTTP_SESSION_VARS['password'];
> 
> Another one is: echo $HTTP_ENV_VARS["QUERY_STRING"];

There is no 'login' or 'password' index in the $HTTP_SESSION_VARS array.
How are you registering these variables? Try using the new method with
$_SERVER. 

---John W. Holmes...

PHP Architect - A monthly magazine for PHP Professionals. Get your copy
today. http://www.phparch.com/



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

Reply via email to