46 lines
823 B
PHP
46 lines
823 B
PHP
<?php
|
|
|
|
define('POPUP', 'popup');
|
|
|
|
define('LOGIN', 'login');
|
|
define('JOIN', 'join');
|
|
define('FINDPW', 'findpw');
|
|
|
|
define('ENTRANCE', 'entrance');
|
|
define('SERVERLIST', 'serverList');
|
|
define('LOGOUT', 'logout');
|
|
define('ADMIN', 'admin');
|
|
define('DONATION', 'donation');
|
|
define('MEMBER', 'member');
|
|
|
|
define('MANAGE', 'manage');
|
|
define('ICON', 'icon');
|
|
|
|
$_serverDirs = array(
|
|
'che',
|
|
'kwe',
|
|
'pwe',
|
|
'twe',
|
|
'hwe'
|
|
);
|
|
|
|
$_serverCount = count($_serverDirs);
|
|
|
|
$_serverNames = array(
|
|
'<font size=4 color=white><b>체섭</b></font>',
|
|
'<font size=4 color=yellow><b>퀘섭</b></font>',
|
|
'<font size=4 color=orange><b>풰섭</b></font>',
|
|
'<font size=4 color=magenta><b>퉤섭</b></font>',
|
|
'<font size=4 color=red><b>훼섭</b></font>'
|
|
);
|
|
|
|
$_serverLevels = array(
|
|
1,
|
|
1,
|
|
1,
|
|
1,
|
|
1
|
|
);
|
|
|
|
|