Webbserverprogrammering 1

Källkod

Följande filer och mappar finns under mappen webbserverprogrammering.
Mappar visas till vänster och filer till höger. Klicka på en fil eller mapp för att öppna nedan eller visa dess innehåll.

webbserverprogrammering/

12 filer

exercises/
exercises.php
img/
incl/
index.php
js/
projects/
projects.php
reflections.php
source.php
style/
viewsource.php

index.php

28 lines UTF-8 Windows (CRLF)
<?php

include("incl/config.php");

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

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


<!-- main content  -->
<div id="content">
<article>
 <h1>Start</h1>


 <p>Hej och välkommen till Alriks's samlingssida i kursen 
 webbserverprogrammering 1.</p>

</article>
</div>


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