Webbserverprogrammering 1

Show sourcecode

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

Webserver1/

Media/
Ovningar/
comments.php
exercises.php
incl/
index.php
source.php
style/
viewsource.php

comments.php

22 lines UTF-8 Windows (CRLF)
<?php
include("incl/config.php");
$title "Webserverprog1: Mina reflektioner";
$pageId "comments";
$pageStyle '';

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"); ?>