Ver Mensaje Individual
  #1 (permalink)  
Antiguo 18/06/2010, 15:03
Avatar de Most
Most
 
Fecha de Ingreso: marzo-2009
Mensajes: 642
Antigüedad: 15 años, 1 mes
Puntos: 6
error en header

Pues eso, me da este error el header:

Cita:
Warning: Cannot modify header information - headers already sent by (output started at /homepages/18/d317375696/htdocs/ficheros.php:5) in /homepages/18/d317375696/htdocs/ficheros.php on line 95
Lo tengo asi el codigo:

(encima de eso tengo codigo html)
Código PHP:
<?
 
$connect
=mysql_connect("xxxxx","dxxxxxx","xxxxx");
mysql_select_db("xxxxx",$connect);
$id htmlspecialchars($_GET['borrar']);
$consulta "DELETE FROM juegos where id='".$id."' ";
$borrar mysql_query($consulta,$connect);
if  (
$borrar) {
    
header("Location: http://www.dummy.com/foo/bar.php");
} else {
    echo 
"No se pudo eliminar la Ficha";
}
?>