M matt.janus Verified User Joined Aug 22, 2008 Messages 5 Aug 27, 2008 #1 Apparently you can't user $_GET vars in plugin pages, is there any way to pass arguments between pages?
Apparently you can't user $_GET vars in plugin pages, is there any way to pass arguments between pages?
hehachris Verified User Joined Nov 24, 2004 Messages 533 Location Hong Kong Aug 27, 2008 #2 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
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