Webbserverprogrammering 1

Show sourcecode

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

webbserverprogrammering/

.gitattributes
.gitignore
classes/
comments.php
credentials.env
dbconnect.php
envparser.php
exercises/
exercises.php
filefinder.php
img/
incl/
index-no-include.php
index.php
myexercises.php
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"); ?>