test_script.php

<?php


$message = 'This should be on every page. I am a useless message, but I guess I provide some testability???';
$message .= "\n".'the purpose of this folder is NOT to print things, but to prepare things like global objects or functions';
$message .= "\n".'but printing this crap serves the purpose for testing, I guess';
$html = '<!--'.$message.'-->';

echo $html;


?>