/* Mathew Hawker 4th Nov 2002 This page is the about us page for the removals services website The about us text is stored in the businesses table within the removals database. */ include("header.php"); include("dbconn.php"); //display page heading echo("
history
"); //the business id in the query is set to 1, which is automatically the main site $query=mysql_query("SELECT about_text FROM businesses WHERE business_id = 1"); $row=mysql_fetch_row($query); //convert text into paragraphs where enter has been pressed $display_text=str_replace(chr(13),"
",$row[0]); echo($display_text."
"); ?> include("footer.php"); ?>