l108/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> td{ border: 1px solid; } </style> </head> <body> <table> <?php $x = 1; while($x <= 100){ echo "<tr><td>$x</td><td>" . ($x*$x) . "</td><td>" . ($x*$x*$x) . "</td></tr>"; $x++; } ?> </table> </body> </html>

Resultaat

Made by Thijs Aarnoudse