Ver Mensaje Individual
  #1 (permalink)  
Antiguo 24/09/2008, 00:44
Avatar de hernansam
hernansam
 
Fecha de Ingreso: septiembre-2007
Ubicación: Funes , Argentina
Mensajes: 204
Antigüedad: 16 años, 7 meses
Puntos: 0
problema con header

hola estoy haciendo un sistema de noticias basico pero me tira en error en el header
este es lo me tira el navegador
Warning: Cannot modify header information - headers already sent by (output started at C:\AppServ\www\nuevo\sistema\procesarnoticia.php:1 ) in C:\AppServ\www\nuevo\sistema\procesarnoticia.php on line 13


Código PHP:
 <?php
  $connect 
mysql_connect("localhost""root""pass") ;

mysql_select_db("sistema_de_noticias"$connect);

$titulo = ($_POST['titulo']);
$autor = ($_POST['autor']);
$categoria = ($_POST['categoria']);

mysql_query("insert into noticias(titulo,autor,categoria,fecha) values ('$titulo','$autor','$categoria',NOW())"$connect);

    if (!
mysql_error()) { 
    
header("location:index.php"); die;
    }
        else { 
        echo 
mysql_error();
        }
?>