phpbar.de logo

Mailinglisten-Archive

[php] $HTTP_GET_VARS

[php] $HTTP_GET_VARS

Guido Haeger GH-lists_(at)_ecora.de
Wed, 16 Feb 2000 13:38:50 +0100


> /*$HTTP_GET_VARS in String einlesen*/
> while ( list( $key, $val ) = each( $HTTP_GET_VARS ) )
>    {
> $formular_eintrag .="$key=$val&";
>    }
> $formular_eintrag=urlencode($formular_eintrag);
> 
> 
> PROBLEM: Sowohl rawurlencode als auch urlencode
>           machen die schoenen "=" zu "%3D"
>           und die "&" zu "%26"

while ( list( $key, $val ) = each( $HTTP_GET_VARS ) )
   {
$formular_eintrag .=urlencode($key)."=".urlencode($val)."&";
   }

Guido Haeger



php::bar PHP Wiki   -   Listenarchive