Webbserverprogrammering 1

Show sourcecode

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

webbsrvprg/

comments.php
exercises/
exercises.php
img/
incl/
index-no-include.php
index.html
index.php
ovningar/
projekt/
source.php
style/
viewsource.php

comments.php

20 lines UTF-8 Windows (CRLF)
<?php
include("incl/config.php");
$title "Webbserv1: Reflektioner";
$pageId "comments";
$pageStyle '';
?>
<?php 
include("incl/header.php"); ?>

<!-- sidans huvudinnehåll  -->
<div id="content">
<article class="justify border">
 <h1>Bra att komma ihåg/reflektioner</h1>
 <h3>Grunder</h3>
 <p>Glöm inte att sätta på all felrapportering under utvecklingen.</p>

 <h3>Funktioner</h3>
 <p>Paketera kod så den blir återanvändbar. Viktigt.</p>
</article>
</div>
<?php include("incl/footer.php"); ?>