Thread: Singleton Help
View Single Post
Old 01-01-2008, 07:11 PM   #3 (permalink)
ReSpawN
The Frequenter
 
ReSpawN's Avatar
 
Join Date: Nov 2007
Location: Netherlands
Posts: 460
Thanks: 49
ReSpawN is on a distinguished road
Default

It's a good class, especially the database class handler. You can expand all the functions using a history (to give a list of ALL made queries and where it went wrong (debugging)) and maybe a public $time; in the top, using it in queries like so:
PHP Code:
    public function query($szQuery) {
        
$pQuery mysql_query($szQuery);
        
//$this->time = time() += $this->time();
        
return $pQuery;
    } 
__________________
"Life is a bitch, take that bitch on a ride"
Send a message via MSN to ReSpawN
ReSpawN is offline  
Reply With Quote