Ver Mensaje Individual
  #28 (permalink)  
Antiguo 17/09/2010, 09:43
tango84
 
Fecha de Ingreso: septiembre-2010
Mensajes: 37
Antigüedad: 13 años, 7 meses
Puntos: 0
Respuesta: Borrar archivos asociados a una base de datos

cambie el codigo asi:

<?php
include("conex.php");
$link=conectarse();
$id= $_GET['id'];
$imagen = $_GET['imagen'];

mysql_query("delete from galeria where id = $id",$link) or die(mysql_error());
unlink($imagen);
header("Location:formulario.php");
?>

y me sale el siguiente error

Warning: unlink() [function.unlink]: No such file or directory in /home5/desigoo7/public_html/autoad/borra.php on line 8

Warning: Cannot modify header information - headers already sent by (output started at /home5/desigoo7/public_html/autoad/borra.php:8) in /home5/desigoo7/public_html/autoad/borra.php on line 9