mirror of
https://github.com/Shadowss/TravianZ.git
synced 2026-08-19 01:31:02 +00:00
Insttal Mysqli fix
This commit is contained in:
@@ -17,7 +17,7 @@ class MYSQLi_DB {
|
|||||||
$this->connection = mysqli_connect(SQL_SERVER, SQL_USER, SQL_PASS, SQL_DB) or die(mysqli_error());
|
$this->connection = mysqli_connect(SQL_SERVER, SQL_USER, SQL_PASS, SQL_DB) or die(mysqli_error());
|
||||||
}
|
}
|
||||||
function query($query) {
|
function query($query) {
|
||||||
return $this->connection->query($query);
|
return mysqli_query($this->connection, $query);
|
||||||
}
|
}
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user