Now we need a way of printing messages, so we write a simple function that may be called anywhere we want the chat to be printed. It simply get the messages out of the DB in the order they have come in, and print them:
<?php // Prints messages function printMessages() { $rs = mysql_query( "SELECT * FROM MINICHAT ORDER BY ITSTIME LIMIT 0,10" );