The following code is inserted in my script for password login. Auth being the name of the class to be included.
//********************************************
if (!class_exists (auth))
{
include ("./auth.php");
}
include ("./authconfig.php");
include ("./check.php");
//*********************************************
I get the following error:
Notice: Use of undefined constant auth - assumed 'auth'
Is there anything I can do to remove the notice without the obvious, turning off error checking.
Thanks