Show sourcecode
The following files exists in this folder. Click to view.
webbserver/ovningar/functions/
functions1.php
functions2.php
functions3.php
functions4.php
functions5.php
functions6.php
functions_index.php
functions3.php
18 lines UTF-8 Windows (CRLF)
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>3</title>
</head>
<body>
<?php
$störst = null;
function tre_tal($nummer1, $nummer2, $nummer3) {
$störst = max($nummer1, $nummer2, $nummer3);
return $störst;
}
echo tre_tal(1, 10, 19);
?>
</body>
</html>