Warning: Cannot modify header information - headers already sent by (output started at C:\AppServ\www\Noticias\conecta.php:9) in C:\AppServ\www\Noticias\nueva_noticia2.php on line 7
les envio el script y el script donde hago la conecccion
<?
require ("conecta.php");
$tit = $_POST['tit'];
$det = $_POST['det'];
$nuevo = "Insert Into noticias (llave1,titulo,detalle,fecha,hora) values (null,'$tit','$det',now(),now())";
$conectado->query($nuevo);
header("location: nueva_noticia1.php"); ****** LINEA DE ERROR ************
mysqli_close($conectado);
?>
<!--
$conectado = new mysqli ('localhost','root','123','noticias_db');
If ($conectado -> connect_error){
die ('ERROR' . $conectado -> connect_error);
}