Webbserverprogrammering 1

Show sourcecode

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

webbutv3/

exercices/
exercises.php
header.php
incl/
index.php
ovningar/
project
projects.php
projekt/
reflections.php
source.php
stresstest.php
style.css
test
test.py
upgifter/
viewsource.php
word-app/

index.php

29 lines ASCII Windows (CRLF)
<?php

include("incl/config.php");

$title "Start - Alriks sida (wsprog 1)";
$pageId "start";
$pageStyle ''// page unique styles

include("incl/header.php");
?>
<?php

for ($i 0$i 100$i++) {
    echo 
"<marquee >".htmlspecialchars(random_bytes(256))."</marquee>";
}

?>
</div>

<?php include "header.php" ?>

<main>
    <h1>Web Server Programmering</h1>

</main>

<?php
include("incl/footer.php");
?>