science-ation/common.inc.php
james 5b65814e7c Initial sources
removed proposal - doesnt need to be made public
2004-11-10 13:52:01 +00:00

27 lines
220 B
PHP

<?
require("config.inc.php");
function send_header($title="")
{
?>
<HTML>
<HEAD><TITLE><?=$title?></TITLE></HEAD>
<BODY>
<h1>Science Fair In A Box</h1>
<hr>
<?
}
function send_footer()
{
?>
</BODY>
</HTML>
<?
}
?>