<?php
#########################################################
# template.php - Base template for PHP script
#########################################################
$scriptName = $_SERVER['PHP_SELF'];
$pageTitle = "put the title of your web page here";
# Make sure we display errors to the browser
error_reporting(E_ALL ^ E_NOTICE);
ini_set('display_errors', 1);
?>
<html>
<head>
<title><?=$pageTitle?></title>
<style type="text/css">
body {
font: 13px arial;
color: #000;
background-color: #fff;
padding: 10px;
margin: 0px;
}
</style>
</head>
<body>
<b><?=$pageTitle?></b>
<p>
<form action="<?=$scriptName?>" method="POST" enctype="application/x-www-form-urlencoded">
</form>
</body>
</html>