l104/H6/6.4.php

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> <style> table tr th { border: 1px solid black; padding: 5px; } </style> </head> <body> <table> <tr> <th>Getal</th> <th>Kwadraat</th> <th>Derde macht</th> </tr> <?php for ($i = 1; $i < 101; $i++) { echo "<tr>"; echo "<th>$i</th>"; echo "<th>".($i*$i)."</th>"; echo "<th>".($i*$i*$i)."</th>"; echo "</tr>"; } ?> </table> </body> </html>

Resultaat

Made by Thijs Aarnoudse