forked from science-ation/science-ation
29 lines
407 B
PHP
29 lines
407 B
PHP
<?
|
|
require("config.inc.php");
|
|
|
|
function send_header($title="")
|
|
{
|
|
?>
|
|
<!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>
|
|
<hr />
|
|
|
|
<?
|
|
}
|
|
|
|
function send_footer()
|
|
{
|
|
?>
|
|
</body>
|
|
</html>
|
|
|
|
<?
|
|
}
|
|
|
|
|
|
?>
|