[PHP-DB] Re: Subject: Login Auth help?

2005-11-11 Thread Neil Smith [MVP, Digital media]
NO ! The headers have to be sent *after* you check the values of $_SERVER["PHP_AUTH_USER"] , which you changed inexplicably to $PHP_AUTH_USER (which is no longer a global variable in recent versions of PHP > 4.1). If they are not global variables within PHP then it'll treat them as local vari

[PHP-DB] calling classes

2005-11-11 Thread Malcolm JC Clark
I have a class which extends to include a mysql class. Within the class's functions i have multiple calls (without creating an object like '$instance = new MysqlDb()' ) to the mysql class like this: function doThis(){ $this->query(""); $this->selectquery(); do something else here $th