Show sourcecode
The following files exists in this folder. Click to view.
comments.php
exercises/
exercises.php
img/
incl/
index-no-include.php
index.php
laragon/
source.php
style/
viewsource.php
index-no-include.php
27 lines ASCII Windows (CRLF)
<?php
ob_start('ob_gzhandler');
?>
<?php
// show all error reporting
error_reporting(-1); // Report all type of errors
ini_set('display_errors', 1); // Display all errors
ini_set('output_buffering', 0); // Do not buffer outputs, write directly
// time page generation, display in footer.
$pageTimeGeneration = microtime(true);
// useful constants
// useful functions
$title = "Webbserv1 :Start";
$pageId = "start";
$pageStyle = '
figure {
border-radius: 10px;
border-color:#333;
box-shadow: 10px 10px 5px #888;
}
';