
17/09/2010, 09:43
|
| | Fecha de Ingreso: septiembre-2010
Mensajes: 37
Antigüedad: 14 años, 6 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 |