样式代码
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> <style> table{ margin: 100px auto; border-style: none; } td{ color:black; border: 1px; border-radius: 5px; } </style> </head> <body> </body> </html>
php代码
<?php /* * 99乘法表 */ header('content-type:text/html;charset=utf-8'); echo "<table width='600' border='1' cellspacing='0' cellpadding='3'>"; for($j=1;$j<=9;$j++){ echo "<tr>"; for($i=1;$i<=$j;$i++){ echo "<td>{$i}*{$j}=".($i*$j)."</td>"; } echo "</tr>"; } echo "</table>";