|
Server : Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/5.2.17 System : Linux localhost 2.6.18-419.el5 #1 SMP Fri Feb 24 22:47:42 UTC 2017 x86_64 User : nobody ( 99) PHP Version : 5.2.17 Disable Function : NONE Directory : /home/queenjbs/www/test/ |
Upload File : |
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="Generator" content="EditPlus®">
<meta name="Author" content="">
<meta name="Keywords" content="">
<meta name="Description" content="">
<title></title>
</head>
<body>
<?
$products = array( array('피닉스', '68. 화룡의 둥지', '12:00'),
array('가스트로드', '38.오크부락', '2:00'),
array('웜', '33.에바입구', '3:00'),
array('빨샤', '35.전초기지(나무)', '2:00')
);
?>
<table border=1>
<tr>
<td>다음 보탐 시간</td>
<td>보스이름</td>
<td>잡은시간</td>
<td>젠타임</td>
</tr>
<?
for($row=0; $row<3; $row++) {
echo"<tr>";
for($col=0; $col<3; $col++) {
echo "<td>".$products[$row][$col]."</td>";
}
echo"</tr>";
}
?>
</table>
</body>
</html>