Ver Mensaje Individual
  #4 (permalink)  
Antiguo 20/12/2007, 10:18
Avatar de mauled
mauled
 
Fecha de Ingreso: marzo-2005
Ubicación: Cd. de México.
Mensajes: 3.001
Antigüedad: 19 años, 1 mes
Puntos: 33
Re: ¿Cuál es el fallo?

Modifica la siguiente linea

Código PHP:
mysql_query("UPDATE palau SET titulo='$tit',fecha='$fec',resumen='$res',texto='$ tex' WHERE id='$id')",$link); 
por

Código PHP:
mysql_query("UPDATE palau SET titulo='".$tit."',fecha='".$fec."',resumen='".$res."',texto='".$tex."' WHERE id='".$id."')",$link) or die(mysql_error()); 
Y comentanos como te fue

Saludillos.