$_GET variables.

matt.janus

Verified User
Joined
Aug 22, 2008
Messages
5
Apparently you can't user $_GET vars in plugin pages, is there any way to pass arguments between pages?
 
DA handlers requests on its own (unlike the way how Apache handles), so you may use this instead in DA:

Code:
parse_str(getenv('QUERY_STRING'));

You will understand if you take a look on phpinfo() in DA
 
Back
Top