The file dwzDataBase.php has some old code that is giving the errors:
Line 483 you are using mysql_connect
$this->db["connessione"] = mysql_connect($this->db["hostname"], $this->db["username"],$this->db["password"]) or trigger_error(mysql_error(),E_USER_ERROR);
Line 504 you are using mysql_select_dbx
function SelectDb(){ if($this->is_mysql_i){ mysqli_select_db($this->db["connessione"], $this->db["database"]); }else{ mysql_select_db($this->db["database"], $this->db["connessione"]); } }
Which extension can I use to generate a Database connection compatible with this extension? |
|
|