Webbserverprogrammering 1

Show sourcecode

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

webbsrvprg/incl/

config.php
footer.php
header.php

config.php

14 lines ASCII Windows (CRLF)

<?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); 


?>