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
|
<title>Num</title>
</head>
<body>
<!--<div align="center">-->
<CENTER>
<div align="center" style="width:718px;height:315px;overflow:auto">
<table border="3" width="77%" height="315" id="table1">
<tr>
<td>
<table border="1" width="100%" cellspacing="0" cellpadding="0" style="border-collapse: collapse" height="15" id="table2">
<div align="center">
<table border="0" width="716" cellpadding="0" style="border-collapse: collapse" height="291" id="table3">
<?PHP
$i="1";
while ($i <30)
{
?>
<tr>
<td width="4"> </td>
<td width="51"><?PHP echo $i; ?></td>
<td width="266"><?PHP echo $i; ?></td>
<td width="185"><?PHP echo $i; ?></td>
<td> </td>
</tr>
<?PHP
$i++;
}
?>
</table>
</div>
</table>
</td>
</tr>
<tr>
<td height="23"> </td>
</tr>
<!-- </table>-->
</div>
</body>
</html> |