04-16-2009, 12:08 AM
|
#2 (permalink)
|
|
Moderateur
Join Date: Apr 2007
Posts: 1,393
Thanks: 5
|
You can't use an array like that for the function arguments.
PHP Code:
public function dbConnect($host, $user, $pswd, $name) {
$this->link = mysqli_connect($host, $user $pswd, $name);
// ...
}
|
|
|
|