At 22:21 4-1-2003, you wrote:
completely failed, the results were wrong every time:

if (strpos($REQUEST_URI, "register.php") !== 0) { // you're in login.php }
try

if (!strpos($REQUEST_URI, "register.php") === FALSE)


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

Reply via email to