PHP MVC

Show sourcecode

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

kmom01/

.gitattributes
.gitignore
404.html
CHANGELOG.md
LICENSE.md
README.md
apple-touch-icon-114x114-precomposed.png
apple-touch-icon-144x144-precomposed.png
apple-touch-icon-57x57-precomposed.png
apple-touch-icon-72x72-precomposed.png
apple-touch-icon-precomposed.png
apple-touch-icon.png
crossdomain.xml
css/
doc/
favicon.ico
footer.php
header.php
humans.txt
img/
index.php
js/
report.php
robots.txt
src/
viewsource.php

viewsource.php

1 lines
1
<?php
$title = "Visa källkod";

// Include code from source.php to display sourcecode-viewer
$sourceBasedir=dirname(__FILE__);
$sourceNoEcho=true;
include("src/source.php");
$pageStyle=$sourceStyle;

include("header.php");
?>
<h1><?php echo $pageTitle; ?></h1>
<?php echo "$sourceBody"; ?>
<?php include("footer.php");