first commit

This commit is contained in:
unknown
2012-03-29 13:00:34 +02:00
commit 6928cbcd1d
2446 changed files with 85772 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
<?php
#################################################################################
## -= YOU MAY NOT REMOVE OR CHANGE THIS NOTICE =- ##
## --------------------------------------------------------------------------- ##
## 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;
}
?>