Show sourcecode
The following files exists in this folder. Click to view.
Webserver1/Ovningar/Funktioner/
ovning_funk1.php
ovning_funk2.php
ovning_funk3.php
ovning_funk4.php
ovning_funk5.php
ovning_funk6.php
ovning_funk7.php
ovning_funk8.php
ovning_funk9.php
ovning_funk4.php
26 lines UTF-8 Windows (CRLF)
<!DOCTYPE html>
<html lang="sv">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>When there are programs at the function</title>
</head>
<body>
<?php
function minmax($nummer1, $nummer2, $nummer3, $max=true) {
echo "Nummerna var: $nummer1, $nummer2, $nummer3.";
echo "<br>";
if ($max) {
echo "Det största är: " . max($nummer1, $nummer2, $nummer3);
}
else {
echo "Det minsta är: " . min($nummer1, $nummer2, $nummer3);
}
}
minmax(1,2,3, false);
echo "<br>";
minmax(1,2,3, true);
?>
</body>
</html>