The following files exists in this folder. Click to view.
functions.php18 lines UTF-8 Unix (LF)
<?php
function person(){
echo "<p>Jag heter Leonid Bilhöfer Maksinen och jag går i klass 23TEa</p>";
}
function cirkel($r){
echo "<p>Radie = $r --> Omkrets = ".(number_format($r*2*M_PI, 2)).", Area = ".(number_format($r**2*M_PI, 2))."</p>";
}
function omkrets($radie){
$omkrets = $radie*2*M_PI;
return $omkrets;
}
function area($radie){
$area = $radie**2*M_PI;
return $area;
}
?>