Ver Mensaje Individual
  #14 (permalink)  
Antiguo 23/08/2010, 13:42
Avatar de DooBie
DooBie
 
Fecha de Ingreso: septiembre-2004
Mensajes: 1.101
Antigüedad: 19 años, 7 meses
Puntos: 71
Respuesta: Depuración de Código - No borra registro en BD

tiene razon pateketrueke, esta linea esta mal

<a href="borrar.php?id=<?php echo $row['id_noticia']; ?>">Borrar</a>

Deberia ser:

<a href="borrar.php?id_noticia=<?php echo $row['id_noticia']; ?>">Borrar</a>

O haces ese cambio, o este:
$id_noticia=$_GET[id_noticia];
por
$id_noticia=$_GET[id];


Ves los cambios?