Auf die Idee, $_GET und $_POST zu mergen, sind übrigens auch schon Andere gekommen,
Hotty? Was ist los mit Dir?
Ob und in welcher Reihenfolge $_GET, $_POST, $_COOKIE, $_SESSION zu $_REQUEST gefügt werden steht in der PHP.ini:
; This directive determines which super global arrays are registered when PHP
; starts up. G,P,C,E & S are abbreviations for the following respective super
; globals: GET, POST, COOKIE, ENV and SERVER. There is a performance penalty
; paid for the registration of these arrays and because ENV is not as commonly
; used as the others, ENV is not recommended on productions servers. You
; can still get access to the environment variables through getenv() should you
; need to.
; Default Value: "EGPCS"
; Development Value: "GPCS"
; Production Value: "GPCS";
; http://php.net/variables-order
variables_order = "GPCS"
ich vermute mal, das waren diejenigen, die einen Tag gebraucht haben, um ihren Code umzuschreiben, weil der Auftraggeber anstelle GET, einen POST haben wollte.
Suchen und Ersetzen. Minutensache.
Jörg Reinholz