2016-08-24
<!doctype html>
<html>
<header>
<meta charset="UTF-8">
<title>九九乘法表</title>
<style type="text/css">
table,tr,td{
border:1px #000 solid;
}
</style>
</header>
<body>
<table>
<?php
for($b=1;$b<=9;$b++):
echo "<tr>";
for ($i=1;$i<=$b;$i++):
echo "<td>";
echo "{$i}*{$b}=".$i*$b;
// echo " ";
echo "</td>";
endfor;
//echo '<br>';
echo "</tr>";
endfor;
?>
</table>
</body>
</html>