114 lines
3.5 KiB
PHP
114 lines
3.5 KiB
PHP
<?php
|
|
include "lib.php";
|
|
include "func.php";
|
|
//로그인 검사
|
|
CheckLogin(1);
|
|
$connect = dbconn();
|
|
|
|
?>
|
|
|
|
<html>
|
|
<head>
|
|
<title>커맨드리스트</title>
|
|
<meta HTTP-EQUIV='Content-Type' CONTENT='text/html; charset=utf-8'>
|
|
<link rel=stylesheet href=stylesheet.php type=text/css>
|
|
<script type="text/javascript">
|
|
function myclock() {
|
|
lastday = new Array(31,28,31,30,31,30,31,31,30,31,30,31);
|
|
|
|
date = document.clock.clock.value;
|
|
|
|
year = parseInt(date.substr(0, 4), 10);
|
|
month = parseInt(date.substr(5,2), 10);
|
|
day = parseInt(date.substr(8, 2), 10);
|
|
hour = parseInt(date.substr(11, 2), 10);
|
|
min = parseInt(date.substr(14, 2), 10);
|
|
sec = parseInt(date.substr(17, 2), 10);
|
|
|
|
//윤년계산
|
|
if(((year % 4 == 0) && (year % 100 != 0)) || (year % 400 == 0)) { lastday[1] = 29; }
|
|
else { lastday[1] = 28; }
|
|
|
|
// if(term > 0) term--;
|
|
|
|
sec++;
|
|
if(sec >= 60) { sec = 0; min++; }
|
|
if(min >= 60) { min = 0; hour++; }
|
|
if(hour >= 24) { hour = 0; day++; }
|
|
if(day > lastday[month-1]) { month++; day = 1; }
|
|
if(month >= 13) { year++; month = 1; }
|
|
if(month < 10) { month = '0' + month; }
|
|
if(day < 10) { day = '0' + day; }
|
|
if(hour < 10) { hour = '0' + hour; }
|
|
if(min < 10) { min = '0' + min; }
|
|
if(sec < 10) { sec = '0' + sec; }
|
|
date = '' + year + '-' + month + '-' + day + ' ' + hour + ':' + min + ':' + sec;
|
|
|
|
document.clock.clock.value = date;
|
|
|
|
window.setTimeout("myclock();", 1000);
|
|
}
|
|
</script>
|
|
<?php require('analytics.php'); ?>
|
|
</head>
|
|
<body OnLoad='myclock()'>
|
|
<?php
|
|
myCommandList($connect);
|
|
|
|
function myCommandList($connect) {
|
|
global $_basecolor, $_basecolor2, $_basecolor3;
|
|
global $images;
|
|
$date = date('Y-m-d H:i:s');
|
|
|
|
// 명령 목록
|
|
$query = "select year,month,turnterm from game where no='1'";
|
|
$result = MYDB_query($query, $connect) or Error(__LINE__.MYDB_error($connect),"");
|
|
$admin = MYDB_fetch_array($result);
|
|
|
|
$query = "select no,turntime,term,turn0,turn1,turn2,turn3,turn4,turn5,turn6,turn7,turn8,turn9,turn10,turn11,turn12,turn13,turn14,turn15,turn16,turn17,turn18,turn19,turn20,turn21,turn22,turn23 from general where user_id='{$_SESSION['p_id']}'";
|
|
$result = MYDB_query($query, $connect) or Error(__LINE__.MYDB_error($connect),"");
|
|
$me = MYDB_fetch_array($result);
|
|
$turn = getTurn($connect, $me, 2);
|
|
|
|
echo "<table width=300 height=700 border=1 cellspacing=0 cellpadding=0 bordercolordark=gray bordercolorlight=black style=font-size:13px;word-break:break-all; id=bg2>
|
|
<form name=clock>
|
|
<tr>
|
|
<td colspan=4 align=center id=bg0><b>- 명령 목록 - <input value='$date' type=text name=clock size=19 style=background-color:black;color:white;border-style:none;></b></td>
|
|
</tr>";
|
|
|
|
$year = $admin['year'];
|
|
$month = $admin['month'];
|
|
// 실행된 턴시간이면 +1
|
|
$cutTurn = cutTurn($me['turntime'], $admin['turnterm']);
|
|
if($date <= $cutTurn) { $month++; }
|
|
|
|
$totaldate = $me['turntime'];
|
|
|
|
for($i=0; $i < 24; $i++) {
|
|
if($month == 13) {
|
|
$month = 1;
|
|
$year++;
|
|
}
|
|
$j = $i + 1;
|
|
$turndate = substr($totaldate,11, 5);
|
|
echo "
|
|
<tr height=28>
|
|
<td width=30 align=center height=24 id=bg0><b>$j</b></td>
|
|
<td width=75 align=center height=24 id=bg1><b>{$year}年 {$month}月</b></td>
|
|
<td width=45 align=center bgcolor=black><b>$turndate</b></td>
|
|
<td width=137 align=center height=24 style=table-layout:fixed;>$turn[$i]</td>
|
|
</tr>";
|
|
$month++;
|
|
$totaldate = addTurn($totaldate, $admin['turnterm']);
|
|
}
|
|
|
|
echo "
|
|
</form>
|
|
</table>
|
|
";
|
|
}
|
|
?>
|
|
|
|
</body>
|
|
</html>
|