Webbserverprogrammering 1

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

functions1.php

16 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>1</title>
</head>
<body>
    <?php
    
function medelande() {
        echo 
"Hejsvejs";
    }
    
medelande();
    
?>
</body>
</html>