Mailinglisten-Archive |
Markus Kniehl wrote: > > Geht und wenn ich > $action = $HTTP_GET_VARS["action"]; > $id = $HTTP_GET_VARS["id"]; > mach dann gehts ja auch aber sonst nich und des is lästig für jede Variable > des zu machen Schau Dir mal folgende Punkte in der php.ini an. Damit wird das Verhalten beim Import von externen Daten in die Scriptumgebung geregelt. variables_order = "EGPCS" ; This directive describes the order in which PHP registers ; GET, POST, Cookie, Environment and Built-in variables (G, P, ; C, E & S respectively, often referred to as EGPCS or GPC). ; Registration is done from left to right, newer values override ; older values. register_globals = On ; Whether or not to register the EGPCS variables as global ; variables. You may want to turn this off if you don't want ; to clutter your scripts' global scope with user data. This makes ; most sense when coupled with track_vars - in which case you can ; access all of the GPC variables through the $HTTP_*_VARS[], ; variables. track_vars = On ; enable the $HTTP_*_VARS[] arrays, where * is one of ; ENV, POST, GET, COOKIE or SERVER. By the way. Welchen Sinn macht es eigentlich, track_vars global abzuschalten? Damit sind dann ja keinerlei Interaktionen mit dem User moeglich. Gruss, Markus
php::bar PHP Wiki - Listenarchive