mirror of
https://github.com/photonstorm/phaser
synced 2024-11-24 05:33:35 +00: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');
|
||
|
}
|
||
|
?>
|