The following files exists in this folder. Click to view.
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/
viewsource.php
28 lines UTF-8 Windows (CRLF)
<?php
include("incl/config.php");
$title = "Källkod - Alriks sida (wsprog 1)";
$pageId = "viewsource";
// page specific $pageStyle is designed inside source.php
// Include code from source.php to display sourcecode-viewer
$sourceBasedir=dirname(__FILE__);
$sourceNoEcho=true;
include("source.php");
$pageStyle=$sourceStyle; // $sourceStyle variable is declared and "filled" inside source.php
// -------------------------------------------------------------
include("incl/header.php");
?>
<!-- main content -->
<main>
<?php echo "$sourceBody"; ?>
</main>
<script type="text/javascript" src="js/viewsource.js"></script>
<?php
include("incl/footer.php");
?>