Tengo el siguiente error:
Warning: Cannot modify header information - headers already sent by (output started at c:\program files\easyphp1-8\www\ls1net\tecnica\auxinsert.php:6) in c:\program files\easyphp1-8\www\ls1net\tecnica\auxinsert.php on line 114
Código PHP:
if (isset($_POST['agreubi']))
{
$texto = $_POST['Ubi'];
$idinv = $_POST['idinv2'];
$fecha = "".date('d')."/".date('m')."/".date('Y');
$ins5 = mysql_query("insert into auxiliar (tipaux, texto, fecha, Id_inv) values (1, '$texto', '$fecha', $idinv)", $coneccion);
header("location: invdet.php?dato=$idinv"); // EN ESTA LINEA ES EL ERROR QUE ME INDICA
}