QUOTE(Klinggon22 @ Feb 25 2008, 11:12 PM)

I checked that script looks cool but how is he suppose to view his messages?
You could try this, maybe change a few things.
CODE
<?php include("config.php"); ?>
<?php
$db = mysql_connect($host, $username, $password);
if(! $db )
{
die('Could not connect: ' . mysql_error());
}
$sql = 'SELECT name, comment FROM $tbl_name';
mysql_select_db($db_name);
$retval = mysql_query( $sql, $db );
if(! $retval )
{
die('Could not get data: ' . mysql_error());
}
while($row = mysql_fetch_assoc($retval))
{
echo "Name: {$row['name']} <br> ".
"Comment: {$row['comment']} <br> ".
"--------------------------------<br>";
}
mysql_close($db);
?>