09-30-2008, 06:56 PM
|
#8 (permalink)
|
|
Moderateur
Join Date: Apr 2007
Posts: 1,393
Thanks: 5
|
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.
|
|
|
|