Warning: Cannot modify header information - headers already sent by (output started at C:\AppServ\www\hernansam.com.ar\portada.php:10) in C:\AppServ\www\hernansam.com.ar\noticias\proceso.p hp on line 10
le saque los espacios en blanco , pero igual me sigue tirando el error
este es el script del problema
Código PHP:
<?php
$link=mysql_connect("localhost","root","pass");
mysql_select_db("noticias",$link);
$nombre=($_POST['nombre']);
$comentarios=($_POST['comentarios']);
mysql_query("INSERT INTO tabla (nombre,comentarios,fecha) values ('$nombre','$comentarios',NOW())",$link)or die (mysql_error());
header("location:portada.php?id=noticia1");?>