Webbserverprogrammering 1

Show sourcecode

The following files exists in this folder. Click to view.

webbsrvprg/

comments.php
exercise/
exercises.php
incl/
index.php
legacy-index.php
mainFramework.php
ovningar/
source.php
style/
stylesheet.css
viewsource.php
webbsrvprg/

legacy-index.php

17 lines ASCII Windows (CRLF)
<?php 

include 'mainFramework.php';

echo 
$header;

$directory="exercise/";

$exercise scandir($directory$sorting_order SCANDIR_SORT_NONE);

foreach(
$exercise as $url){
    echo 
'<a href="exercise/'.$url.'">.'.$url.'</a><br>';
}

echo 
$footer;

?>