<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>
Made by Thijs Aarnoudse