Thread: newb in OOP
View Single Post
Old 09-30-2008, 06:56 PM   #8 (permalink)
Salathe
Moderateur
RegEx Guru PHP Guru Top Contributor Advanced Programmer 
 
Salathe's Avatar
 
Join Date: Apr 2007
Posts: 1,393
Thanks: 5
Salathe is on a distinguished road
Default

Before the mysql_connect line you'll want to add:

PHP Code:
$this->host     $host;
$this->username $username;
$this->password $password;
$this->db       $db
Then they'll be available to use in the lines which follows.
Salathe is offline  
Reply With Quote