phpbar.de logo

Mailinglisten-Archive

[php] HTTP_POST_VARS

[php] HTTP_POST_VARS

Alexander Meurer php_(at)_phpcenter.de
Fri, 08 Feb 2002 13:03:30 +0100


Hi Till,

> Hat jmd. eine Idee wie ich pauschal durch alle HTTP_POST_VARS loopen
> koennte und alle Inhalte ausgebe ohne die einzelnen Namen der
> Felder/Variablen zu kennen? Ich versuche eine standardisierte
> Formularverarbeitung fuer x (Anzahl) Projekte zu bauen. Ich bin zur
> Zeit leider auf dem Holzweg, diesbezueglich.

also wenn ich jetzt nicht total auf dem Holzweg bin, dann ist
HTTP_POST_VARS doch ein ganz normales assoziatives Array.
Warum dann nicht so:

reset ($HTTP_POST_VARS);
while (list ($key, $value) = each ($HTTP_POST_VARS)) {
   print 'Schlüssel: ' . $key . ', Wert: ' . $value . '<br>';
}

Ciao
   Alex


php::bar PHP Wiki   -   Listenarchive