mirror of
https://github.com/Shadowss/TravianZ.git
synced 2026-06-28 08:34:33 +00:00
21 lines
373 B
PHP
21 lines
373 B
PHP
<?php
|
|
|
|
|
|
include ("../../GameEngine/config.php");
|
|
include ("../../GameEngine/Database.php");
|
|
include ("../../GameEngine/Admin/database.php");
|
|
|
|
|
|
mysql_connect(SQL_SERVER, SQL_USER, SQL_PASS);
|
|
mysql_select_db(SQL_DB);
|
|
|
|
$database->populateOasisdata();
|
|
$database->populateOasis();
|
|
$database->populateOasisUnits2();
|
|
|
|
|
|
|
|
|
|
header("Location: ../index.php?s=6");
|
|
|
|
?>
|