l108/6.2.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> </head> <body> <?php $x = 1; while($x <= 10){ echo "Het kwadraat van $x is " . ($x * $x) . "<br>"; $x++; } ?> </body> </html>

Resultaat

Made by Thijs Aarnoudse