<?PHP
//九九乘法表
echo"<table border='1px' cellpadding=0 cellspacing=0 width='500px' height='400px'>";
for($i=1;$i<=9;$i++)
{echo"<tr>";
for($j=1;$j<=9;$j++)
{echo"<td>";
if($j<=$i){echo $j."*".$i."=".$j*$i;}
echo"</td>";}
echo "</tr>";}
echo"</table>";
?>