<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><title>九九乘法表</title><link href="mult9_9.css" rel="stylesheet" type="text/css" /><body><table border="1" cellpadding="0" cellspacing="0" class="tableStyle"> <caption> <h1>九九乘法表</h1> </caption> <?phpfor ($i=1; $i<<strong style="color:transparent">本文来源gao@daima#com搞(%代@#码@网&</strong><strong>搞gaodaima代码</strong>=9; $i++){ echo("<tr>"); for ($j=1; $j<=$i; $j++) { echo("<td align="center" width="100">"); $s = $i * $j; echo "$i * $j = $s"; echo("</td>"); } echo("</tr>");} ?></table>