// file: content.php // purpose: accepts a variable from the URL to display a page based on value of 'page' [http://www.hardcourt.com.au/content.php?page=X] // created: April 2009 for NSWHTA ?> //file: header.inc //purpose: header information for site (called from content.php) //created: April 2009 for NSWHTA ?> $time = microtime(); $time = explode(' ', $time); $time = $time[1] + $time[0]; $start = $time; ?>
|
||||
//file: endX.inc
//purpose: closes off page (called from //content.php)
//created: April 2009 for NSWHTA
date_default_timezone_set("Australia/Sydney");
$year = date('Y');
?>
|