|
I wrote a status page HTML code, here I have 8 port status, it prints first 7 and last status it won't print, from there onwards it won't print footer also, if I make 10 instead 8, then it prints first 9 and last one status it won't print, samething if I make 15, it prints 14 and last one won't, any issue with this script?.
<html>
<head>
<title>STATUS PAGE</title>
</head>
<body>
<br>
<div id="hedeer">
<CENTER> STATUS PAGE </CENTER>
</div>
<div align="center">
<b><font size="6"> 8 PORTs STATUS </font></b>
<br><br>
</div>
<div align="center">
<td> <strong>P1 Status</strong> <input type="button" value="ON" style="background-color: #00cc00; color: #ffffff;" /> </td>
<br>
<td> <strong>P2 Status</strong> <input type="button" value="ON" style="background-color: #00cc00; color: #ffffff;" /> </td>
<br>
<td><strong>P3 Status</strong> <input type="button" value="ON" style="background-color: #00cc00; color: #ffffff;" /> </td>
<br>
<td> <strong>P4 Status</strong> <input type="button" value="ON" style="background-color: #00cc00; color: #ffffff;" /> </td>
<br>
<td> <strong>P5 Status</strong> <input type="button" value="ON" style="background-color: #00cc00; color: #ffffff;" /> </td>
<br>
<td> <strong>P6 Status</strong> <input type="button" value="ON" style="background-color: #00cc00; color: #ffffff;" /> </td>
<br>
<td> <strong>P7 Status</strong> <input type="button" value="ON" style="background-color: #00cc00; color: #ffffff;" /> </td>
<br>
<td> <strong>P8 Status</strong> <input type="button" value="ON" style="background-color: #00cc00; color: #ffffff;" /> </td>
<br>
</div>
<br>
</div>
<tr> <CENTER>
<td align="center" width="100%" colspan="2">
<img border="0" src="footer.gif" width="800" height="25"></td> </CENTER>
</tr>
</body>
</html>
|