mirror of
https://github.com/wassname/phaser.git
synced 2026-06-27 16:10:15 +08:00
12 lines
192 B
PHP
12 lines
192 B
PHP
<?php
|
|
require('list.php');
|
|
|
|
if ($_SERVER['SERVER_NAME'] == '192.168.0.100')
|
|
{
|
|
require('index_local.php');
|
|
}
|
|
else
|
|
{
|
|
require('index_remote.php');
|
|
}
|
|
?>
|