l106/H6/6.4.php

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> </head> <body> <table> <tr> <th>getal</th> <th>kwadraat</th> <th>derdemachts</th> </tr> <?php for($i=1; $i<100; $i++){ echo "<th>$i</th>"; echo "<th>".($i*$i)."</th>"; echo "<th>".($i*$i*$i)."</th>"; } ?> </table> </body> </html>

Resultaat

Made by Thijs Aarnoudse