Re: [PHP-DB] Windoze crashes on this simple logon script.

2001-02-16 Thread Phil Driscoll
I suspect that what is going on is that your code is just going around in circles - the redirect is just opening the same page over and over again because your logic is flawed somewhere. Instead of outputting the location header, output an a href= instead and echo out sundry values until you find

[PHP-DB] Windoze crashes on this simple logon script.

2001-02-15 Thread Larry Rivera
Anyone have similar exp on why this would crash on Win32 is IIS if (isset($it)){ // Check Entered User Credentials if(($logon == "SuperUser") ($pass == "Pass")){ session_start(); session_register('logon'); header("Location:$PHP_SELF"); exit(); }else{ etc . . . . - Original Message