Ver Mensaje Individual
  #4 (permalink)  
Antiguo 16/11/2007, 17:58
jose_sv
 
Fecha de Ingreso: noviembre-2007
Mensajes: 24
Antigüedad: 16 años, 6 meses
Puntos: 0
Re: ZiTALK version 2 Beta litle: Ajax Chat

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();
 }