Initial sources

removed proposal - doesnt need to be made public
This commit is contained in:
james 2004-11-10 13:52:01 +00:00
parent fa8df79b41
commit 5b65814e7c
4 changed files with 40 additions and 0 deletions

26
common.inc.php Normal file
View File

@ -0,0 +1,26 @@
<?
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>
<?
}
?>

5
config.inc.php Normal file
View File

@ -0,0 +1,5 @@
<?
$SFIABDIRECTORY="sfiab/";
?>

Binary file not shown.

9
index.php Normal file
View File

@ -0,0 +1,9 @@
<?
include "common.inc.php";
send_header();
?>
<?
send_footer();
?>