[PHP] function login

2001-05-17 Thread Greg K
I am creating a function called login, I have a main file called index.php .. which has my login form , it calls a login.php file, and in that login.php there is file include statement which calls config.php and that is where the function lie. This is my function , now if i don't set this as a

Re: [PHP] function login

2001-05-17 Thread Plutarck
Define how index.php calls the login.php file. I assume you mean index.php include() login.php, which has include() on config.php? If so, be sure that the path to config.php as included in login.php is right. Use the fully qualified path to ensure it works right. Other than that, as long as the