mirror of
https://github.com/photonstorm/phaser
synced 2024-11-15 09:27:37 +00:00
12 lines
No EOL
190 B
PHP
12 lines
No EOL
190 B
PHP
<?php
|
|
require('list.php');
|
|
|
|
if ($_SERVER['SERVER_NAME'] == '192.168.0.100')
|
|
{
|
|
require('view_local.php');
|
|
}
|
|
else
|
|
{
|
|
require('view_remote.php');
|
|
}
|
|
?>
|