<?php


include 'db.php';
include 'error.php';

if(!($connection=@mysql_connect($hostName, $dbUsername, $dbPassword)))
	die("Could not connect to DB");

if(!(mysql_select_db ($databaseName, $connection)))
	showerror();


$listQuery="SELECT * FROM background WHERE background_header='History'";

if(!($result = @mysql_query($listQuery,$connection)))
	showerror();

$row=mysql_fetch_array($result);
$detail=$row["background_detail"];
include 'header.php';

?>

<span class="head0">History of the ORS</span><p>

<?php
echoReplace($detail);
include 'footer.php';

?>
