Ver Mensaje Individual
  #1 (permalink)  
Antiguo 26/08/2008, 10:23
Avatar de vidalsoft
vidalsoft
 
Fecha de Ingreso: julio-2008
Ubicación: /www/...
Mensajes: 339
Antigüedad: 15 años, 9 meses
Puntos: 1
Ayuda con Header's

hola amigos de forosdelweb, tengo el siguiente problema, causa de mi ignorancia...

tengO:

Código PHP:
$consultar="SELECT cod_asistencia, hora_entrada_real FROM asistencia_personal where hora_entrada_real<>'' and hora_salida_real='' and cod_personal='$codigo_z' and dia='$fecha_hoy_z'";
            
$resulthora=mysql_query($consultar,$cnx);
            
$rsHora=mysql_fetch_array($resulthora);
              
//if($_SESSION['cod_tipousuario']<>5){
                
if($rsHora['hora_entrada_real']!=""){
                    
header("location : grabar_asistencia_docente_entrada.php?cod_docente='$codigo_z'");
                }
                else{
                    
header("location : grabar_asistencia_docente_salida.php?cod_docente='$codigo_z'");
}


me captura el codigo que le envio en el get pero lo headers no me funkan sale este error :

Warning: Cannot modify header information - headers already sent by (output started at F:\AppServ\www\professionalair\aver1.php:8) in F:\AppServ\www\professionalair\aver1.php on line 19

le agradeceria mucho su ayuda....