phpbar.de logo

Mailinglisten-Archive

[php] HTTP_GET_VARS

[php] HTTP_GET_VARS

Cyrill Schumacher CyrillSchumacher_(at)_swol.de
Fri, 9 Feb 2001 20:32:42 +0100


> if ($HTTP_GET_VARS["user"]) {
>        $msg[]= "Loggen Sie sich bitte ordentlich im System auf der
> Hauptseite ein.";
>        include ("error.php");
>        echo '<META HTTP-EQUIV="Refresh" CONTENT="3; URL=index.htm">';
>        exit();
> }

vergiss den mist mit dem HTTP_GET_VARS array
mache lieber folgendes:

if( "GET"===$REQUEST_METHOD ){

    fehlermeldung oder

    header("Location: /index.htm");
    exit;

}elseif( "POST"===$REQUEST_METHOD ){

    herzlich willkommen im bereich blablabla

}else{ die("alter hacker ;-)"); }

kiri




php::bar PHP Wiki   -   Listenarchive