/* Mathew Hawker 5th Nov 2002 This page is the backloading page on the main site of removal services website each backloading entry has an id called $entry which is associated with backloading_id in the backloading table in the removals database. */ include("header.php"); include("dbconn.php"); $q_backloading=mysql_query("SELECT backloading_id, heading, backloading_text FROM backloading ORDER BY backloading_order"); while ($r_backloading=mysql_fetch_row($q_backloading)) { echo("
$r_backloading[1]
"); $display_text=str_replace(chr(13),"",$r_backloading[2]); echo("
$display_text"); } echo("
"); include("footer.php"); ?>