View Single Post
Old 10-10-2007, 04:43 PM   #4 (permalink)
cherries
The Wanderer
 
cherries's Avatar
 
Join Date: Oct 2007
Posts: 20
Thanks: 0
cherries is an unknown quantity at this point
Default

a class declaration would be a good start(as Karl said):
PHP Code:
<?php
    
class myClass
    
{
        private 
$db;
        
        public function 
__construct ( )
        {
            
$this->db = new mysqli('localhost''x''y''z'); //Using mysqli is also a good idea.
        
}
    }
?>
cherries is offline  
Reply With Quote