Soy novato en PHP y hay cositas que aún no se hacer. Me sale un warning:
Código PHP:
Warning: Cannot modify header information - headers already sent by (output started at C:xampphtdocsprobando.php:12) in C:xampphtdocsprobando.php on line 15
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;
}
Un saludo!