代碼如下
<style type="text/css">
<!--
.table {
background-color: #00CCCC;
border: medium dotted #3333FF;
font-size: 20px;
text-decoration: blink;
align="center";
}
-->
</style>
<table class="table" border="1" align="center";>
<?php
header('Content-type:text/html;scharset=utf-8');
echo"<tr><td colspan=9>php九九乘法表</td></tr>";
for($i=1;$i<10;$i++)
{
echo "<tr>";
for($j=1;$j<=$i;$j++)
{
$res = $i * $j;
echo "<td>$j*$i=$res</td>";
}
echo "</tr>";
}
?>
</table>