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();
}
?>