mirror of
https://github.com/photonstorm/phaser
synced 2024-11-16 17:58:23 +00:00
12 lines
No EOL
192 B
PHP
12 lines
No EOL
192 B
PHP
<?php
|
|
require('list.php');
|
|
|
|
if ($_SERVER['SERVER_NAME'] == '192.168.0.100')
|
|
{
|
|
require('index_local.php');
|
|
}
|
|
else
|
|
{
|
|
require('index_remote.php');
|
|
}
|
|
?>
|