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_funk2.php
18 lines ASCII 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 hej($antal) {
for ($i=0;$i<$antal;$i++) {
echo "Hejsvejs!";
}
}
hej(3);
?>
</body>
</html>