1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
<? include("../manage/category/common.php"); ?> <? include('./include/_Head.php'); ?>
<br>
<table width="680" border="0" cellspacing="0" cellpadding="0"> <tr bgcolor="#FF6600"> <td height="3" colspan="4"></td> </tr> <tr align="center" bgcolor="F5F5F5"> <td width="170" height="27">»óÈ£</td> <td width="170">¾÷Á¾</td> <td width="170">Çü½Ä</td> <td width="170">µµÀÔÀÏ</td> </tr> <tr bgcolor="EEEEEE"> <td height="1" colspan="4"></td> </tr> </table>
<? $sSQL = " select compname, upjong, kind, rege_date from pdauseoff order by rege_date DESC "; $sSQLResult = mysql_query($sSQL);
while ( $Row = mysql_fetch_array($sSQLResult) ) {
?> <table width="680" border="0" cellspacing="0" cellpadding="0"> <tr class="txt03"> <td width="170" height="27" align="center"><?=$Row[compname];?></td> <td width="170" align="center"><?=$Row[upjong];?></td> <td width="170" align="center"><?=$Row[kind];?></td> <td width="170" align="center"><?=$Row[rege_date];?></td> </tr> <tr bgcolor="EEEEEE"> <td height="1" colspan="4"></td> </tr> </table>
<?
}
?>
<table width="680" border="0" cellspacing="0" cellpadding="0"> <tr class="txt03"> <td width="170" height="27" align="center"><FONT COLOR="#0033FF"><B>... ¿Ü ´Ù¼ö</B></FONT></td> <td width="170" align="center"></td> <td width="170" align="center"></td> <td width="170" align="center"></td> </tr> <tr bgcolor="EEEEEE"> <td height="1" colspan="4"></td> </tr> </table>
|