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
functions2.php
18 lines ASCII Windows (CRLF)
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>2</title>
</head>
<body>
<?php
function medelande($nummer) {
for ($i = 0; $i < $nummer; $i++) {
echo "Hejsvejs <br>";
}
}
medelande(5);
?>
</body>
</html>