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