Ver Mensaje Individual
  #1 (permalink)  
Antiguo 26/05/2010, 12:52
ataide
Usuario no validado
 
Fecha de Ingreso: diciembre-2009
Mensajes: 37
Antigüedad: 14 años, 11 meses
Puntos: 0
Error de novato

Muy buenas.

Soy novato en PHP y hay cositas que aún no se hacer. Me sale un warning:
Código PHP:
WarningCannot modify header information headers already sent by (output started at C:xampphtdocsprobando.php:12in C:xampphtdocsprobando.php on line 15 
Y el trozo de código es el siguiente:
Código PHP:
if (!isset($PHP_AUTH_USER)) {
      
header('WWW-Authenticate: Basic realm="Acceso restringido"');
      
header('HTTP/1.0 401 Unauthorized');
      echo 
'Se requiere autorización para acceder al área privada.';
      exit;
   } 
¿Podríais decirme de qué se trata?

Un saludo!