phpbar.de logo

Mailinglisten-Archive

[php] header (WWW-Authenticate)

[php] header (WWW-Authenticate)

W. Palatin news_(at)_palatin.at
Mon, 18 Sep 2000 17:26:30 +0200


ppcd> wenn ich jedoch alles richtig eingegeben habe kommt immer wieder die

Wie sieht dein code aus?

Ich habe es in einer Funktion gelöst
(jedoch noch nicht wirklich schön gelöst)
Bsp:
function auth($user, $pass, $cuser, $cpass) {
        if ($cuser==$user AND $cpass==$pass) {
                return 2;
                exit;
        } else {
          Header("WWW-Authenticate: Basic realm=\"pal05.net\"");
          Header("HTTP/1.0 401 Unauthorized");
          echo "<h1>401 Unauthorized</h1>\n";
          exit;
        }
}

Der Link (über switch aufgerufen):
                $lebensl = auth("RICHTIGERBENUTZER","RICHTIGESPASSWORT",$PHP_AUTH_USER,$PHP_AUTH_PW);
                if ($lebensl == 2) { header("Location: lebensl.php"); }
Die Seite:
                    $success = auth("RICHTIGERBENUTZER","RICHTIGESPASSWORT",$PHP_AUTH_USER,$PHP_AUTH_PW);
                   if ($success != 2) { header("Location: index.php"); }

--
Willibald Palatin, Entwicklung
yline web access services AG
Richard Strauss-Straße 10, A-1230 Wien
fon: +43-1-919 99 -242 - fax: +43-1-919 99 -119




php::bar PHP Wiki   -   Listenarchive