<?php
// Connect to database
$con = mysql_connect("flyingcoachlimo.startlogicmysql.com","flyingcoachlimo","tiptop76c#");
// Determine if database server is available
if (!$con) {
die('Could not connect to database - db_connect.inc: ' . mysql_error());
}
// Connect to database
mysql_select_db("flyingcoachfc", $con);
// Query database
$query = "SELECT * FROM pages WHERE pageName='footer.php'";
// Place results into variables
$result = mysql_query($query);
if(!$result)
{
echo 'Query failed: '.mysql_error();
}
while($row = mysql_fetch_array($result))
{
$footerText = "<pre style='width: 480px; font-family: Verdana;'>".$row[2]."</pre>";
}
// Close database connection
mysql_close();
?>
<div id="footer">
<hr/>
<h1>© 2010 Flying Coach Limousine Services · <a href="http://www.letusdesign.it">Flying Coach Limousine Services LetUsDesign.it</a></h1>
<hr/>
<h2><?php echo $footerText; ?></h2>
</div>
</body>
</html>