<?# file: details.php → syntax.php → 
$pagename = "details.htm";
require_once("template.php");
/* This file enables the included and related html-frame [details.htm] to include and properly handle php code to be executed. File template.php, required above, includes all common website variables. ... if a website common MENU [$_menu] is required, then this will have to be included in file template.php */
?>
|
<?# file: template.php
header("Pragma: no-cache");
header("Cache-Control: no-store,no-cache,must-revalidate,post-check=0,pre-check=0",false);
// - global $cbg; $cbg="aqua"; :-(
$tv="Template variables and headers()
[place holder]";
$agent = getenv("HTTP_USER_AGENT");
// $_menu="... menu-html, javascript , php"
?>
|