mirror of
https://github.com/Shadowss/TravianZ.git
synced 2026-06-28 00:24:23 +00:00
31 lines
1.2 KiB
PHP
Executable File
31 lines
1.2 KiB
PHP
Executable File
<?php
|
|
//////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
// TRAVIANX //
|
|
// Only for advanced users, do not edit if you dont know what are you doing! //
|
|
// Made by: Dzoki & Dixie (TravianX) //
|
|
// - TravianX = Travian Clone Project - //
|
|
// DO NOT REMOVE COPYRIGHT NOTICE! //
|
|
//////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
include("constant.php");
|
|
class MYSQLi_DB {
|
|
var $connection;
|
|
function MYSQLi_DB() {
|
|
$this->connection = mysqli_connect(SQL_SERVER, SQL_USER, SQL_PASS, SQL_DB) or die(mysqli_error($database->dblink));
|
|
}
|
|
|
|
function query($query) {
|
|
return mysqli_query($this->connection, $query);
|
|
}
|
|
|
|
function query_return($query) {
|
|
$q = mysqli_query($this->connection, $query);
|
|
return mysqli_fetch_assoc($q);
|
|
}
|
|
};
|
|
|
|
if(DB_TYPE) {
|
|
$database = new MYSQLi_DB;
|
|
}
|
|
?>
|