Show sourcecode
The following files exists in this folder. Click to view.
webbserverprogrammering/ovningar/funktioner/
funktion1.php
20 lines ASCII Windows (CRLF)
<?php
error_reporting(-1); // Report all type of errors
ini_set('display_errors', 1); // Display all errors
ini_set('output_buffering', 0); // Do not buffer outputs, write directly
?>
<!DOCTYPE html>
<html>
<body>
<?php
echo 'Skriv en funktion som skriver ut "Hejsvejs!".<br><br>';
$text = "Hejsvejs!";
drawtext($text);
function drawtext($input) {
echo $input;
}
?>
</body>
</html>