<?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='Officers'";

if(!($result = @mysql_query($listQuery,$connection)))
	showerror();

$row=mysql_fetch_array($result);

include 'header.php';

?>

<span class="head0">Officers at ORS</span><p>

<?php
echoReplace($row["background_detail"]);
include 'footer.php';

?>
