Howdy! Welcome to our community of more than 130.000 members devoted to web hosting. This is a great place to get special offers from web hosts and post your own requests or ads. To start posting sign up here. Cheers!
/Peo, FreeWebSpace.net
"If you don't go after what you want, you'll never have it. If you don't ask, the answer is always no. If you don't step forward, you're always in the same place."
$con = mysql_connect("localhost", "username", "password");
if (!$con){
die ("Couldn't connect");
}
mysql_select_db("chat");
$result = mysql_query("SELECT * FROM chat ORDER BY date LIMIT 15");
while ($row = mysql_fetch_assoc($result)){
}
mysql_close();