Hoofdstuk 7/7.2.7.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 $temp = 23; $pipo = temparatuur ($temp); function temparatuur($graden){ $fahr = $graden * 1.8 + 32 ; echo"<div> Als het $graden graden is, dan is het $fahr fahrenheit. </div> "; } ?> </body> </html>

Resultaat

Made by Thijs Aarnoudse