Ver Mensaje Individual
  #1 (permalink)  
Antiguo 30/09/2008, 09:33
dancresi
 
Fecha de Ingreso: marzo-2005
Mensajes: 372
Antigüedad: 19 años, 2 meses
Puntos: 1
Ayuda con header("Location:")...

Buen día amigos tengo este problemita, me marca este error:
Warning: Cannot modify header information - headers already sent by (output started at C:\www\conexion.php:16) in C:\www\switch.php on line 9

este es el codigo, no le veo el error a mi codigo me pueden ayudar, gracias
Código PHP:
include("conexion.php");
$link=Conectarse();
$sql=mysql_query("select * from configuracion",$link);
$row=mysql_fetch_array($sql);
$estatus=$row['estatus'];
if(
$estatus==0)
{
header ("Location: close.php"); 
exit;
}
if(
$estatus==1)
{
header("Location: load_file.php");
exit;