九九乘法表PHP版

我发现我超级爱写九九乘法表

<html>
<head>
<title>九九乘法表</title>
</head>
<body>
<?php
    for($i=1;$i<=9;$i++)
    {
        echo "<table>";
        echo "<tr>";
        for($j=1;$j<=$i;$j++)
        {
            echo "<td>";
            echo $i*$j;
            echo "</td>";
        }
        echo "</tr>";
        echo "</table>";
    }
?>
</body>
</html>


作者: lipingren   发布时间: 2010-11-28