l106/werkmap/Hfst 6.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 $i = 0; while ($i<=10){ echo "<div>Het kwadraat van $i = ". ($i*$i) ."</div>"; $i++; }; echo "<br>"; echo "<br>"; echo "<br>"; for($j=0;$j<=20;$j+=2){ echo "<div>Het kwadraat van $j = ". ($j*$j) ."</div>"; } echo "<br>"; echo "<br>"; echo "<br>"; echo "<table style='width:20%'> <th>1e macht</th> <th>2e macht</th> <th>3e macht</th>"; for($k=0;$k<=100;$k++){ echo "<tr> <td>$k</td> <td>". $k*$k ."</td> <td>". $k*$k*$k ."</td> </tr>"; }; echo "</table>"; ?> </body> </html>

Resultaat

Made by Thijs Aarnoudse