PHP实现九九乘法表

<table border="1">
     for ($i = 1; $i < 10; $i++): ?>
        <tr>
             for ($j = 1; $j < $i + 1; $j++): ?>
                <td>
                     echo $i . '*' . $j . '=' . $i * $j; ?>

                </td>
             endfor; ?>
        </tr>
     endfor; ?>
</table>

你可能感兴趣的:(PHP)