opdrachten/H6/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 = 0; while ($x < 11) { $kwadraat = $getal*$getal; echo"Het kwadraat van $getal = $kwadraat. <br/>"; $getal = $getal+1; } ?> </body> </html>

Resultaat

Made by Thijs Aarnoudse