php[world] 2017

Voting

Please answer this simple SPAM challenge: three minus zero?
(Example: nine)

The Note You're Voting On

xsanychx at mail dot ru
4 years ago
New auth:

<?php
$login
= 'test_login';
$pass = 'test_pass';

if((
$_SERVER['PHP_AUTH_PW']!= $pass || $_SERVER['PHP_AUTH_USER'] != $login)|| !$_SERVER['PHP_AUTH_USER'])
{
   
header('WWW-Authenticate: Basic realm="Test auth"');
   
header('HTTP/1.0 401 Unauthorized');
    echo
'Auth failed';
    exit;
}
?>

<< Back to user notes page

To Top