<div class="inner">
					<h2><img src="images/LatestNews.png" width="252" height="40" alt="Our News" /></h2>
					<?php
						//Connect to specified MySQL database
						$db = new mysqli (db_host, db_user, db_password, db_name);
					
						// Prepare the statement
						$stmt = $db->prepare("SELECT nTitle, date_format(nDate, '%d %M, %Y'), nContent FROM news order by nDate DESC");

						// Bind parameters (dont change date -= date is a php function!)
						$stmt->bind_result($nTitle, $nDate, $nContent);
				
						// Execute the statement
						$stmt->execute();
			
						while ($stmt->fetch()) {
							echo "<p> <span class=newstitle> " . $nTitle . "&#160;</span> - (Posted: ";
							echo $nDate. ")<br />";
							echo $nContent. "<br /></p>";
						}
						// Close the statement	
						$stmt->close();
					?>	
				</div>