Y otra cosa
al hacer el campo id PRIMARY KEY NOT NULL AUTO_INCREMENT no hace falta ingresarlo tampoco MySQL ingresa el siguiente
Código PHP:
// sending comments
if($_GET["Write"]=="yes")
{
$comment=htmlentities(utf8_decode($_REQUEST["comment"]));
$insert="insert into chat values(".$comment.")";
if(trim($_REQUEST["comment"])!=NULL)
{
$insert=mysql_query($insert);
}
mysql_close($link);
exit();
}