mirror of
https://github.com/Shadowss/TravianZ.git
synced 2026-06-28 08:34:33 +00:00
27 lines
994 B
PHP
27 lines
994 B
PHP
<?php
|
|
#################################################################################
|
|
## -= YOU MAY NOT REMOVE OR CHANGE THIS NOTICE =- ##
|
|
## --------------------------------------------------------------------------- ##
|
|
## Edited by: akshay9, ZZJHONS, songeriux ##
|
|
## Filename Database.php ##
|
|
## License: TravianX Project ##
|
|
## Copyright: TravianX (c) 2010-2011. All rights reserved. ##
|
|
## ##
|
|
#################################################################################
|
|
|
|
include("config.php");
|
|
|
|
switch(DB_TYPE) {
|
|
case 1:
|
|
include("Database/db_MYSQLi.php");
|
|
break;
|
|
//case 2:
|
|
//include("Database/db_MSSQL.php");
|
|
//break;
|
|
default:
|
|
include("Database/db_MYSQL.php");
|
|
break;
|
|
}
|
|
## Security
|
|
include("Protection.php");
|
|
?>
|