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.
12 filer
exercises/
exercises.php
img/
incl/
index.php
js/
projects/
projects.php
reflections.php
source.php
style/
viewsource.php
exercises.php
img/
incl/
index.php
js/
projects/
projects.php
reflections.php
source.php
style/
viewsource.php
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 -->
<div id="content">
<?php echo "$sourceBody"; ?>
</div>
<script type="text/javascript" src="js/viewsource.js"></script>
<?php
include("incl/footer.php");
?>