science-ation/common.inc.php

29 lines
407 B
PHP
Raw Normal View History

<?
require("config.inc.php");
function send_header($title="")
{
?>
2004-11-10 15:31:30 +00:00
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head><title><?=$title?></title>
</head>
<body>
<h1>Science Fair In A Box</h1>
2004-11-10 15:31:30 +00:00
<hr />
<?
}
function send_footer()
{
?>
2004-11-10 15:31:30 +00:00
</body>
</html>
<?
}
?>