l104/H6/6.2/6.4.php

<table> <thead> <tr> <th>Eerste macht</th> <th>Tweede macht</th> <th>Derde macht</th> </tr> </thead> <tbody> <?php for ($i = 1; $i <= 100; $i++) { echo "<tr>"; echo "<td>{$i}</td>"; echo "<td>" . ($i * $i) . "</td>"; echo "<td>" . ($i * $i * $i) . "</td>"; echo "</tr>"; } ?> </tbody> </table>

Resultaat

Made by Thijs Aarnoudse