Show sourcecode
The following files exists in this folder. Click to view.
webbserverprogrammering/exercises/funktioner/
ovning_1.php
ovning_2.php
ovning_3.php
ovning_4.php
ovning_5.php
ovning_6.php
ovning_1.php
17 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>Övning 1</title>
</head>
<body>
<?php
function greeting(){
echo "Hejsvejs";
}
greeting()
?>
</body>
</html>