envexlabs Posted May 16, 2007 Share Posted May 16, 2007 Hey, I just installed amember pro for a client and i was wondering how i can display all the POST/GET variables that it generating for logged in users? Thanks, envex Quote Link to comment https://forums.phpfreaks.com/topic/51731-grabbing-all-variables/ Share on other sites More sharing options...
chigley Posted May 16, 2007 Share Posted May 16, 2007 <?php foreach($_REQUEST as $k => $v) { echo "$k = $v\n"; } ?> That outputs each POST or GET variable, is that what you're after? Quote Link to comment https://forums.phpfreaks.com/topic/51731-grabbing-all-variables/#findComment-254800 Share on other sites More sharing options...
envexlabs Posted May 16, 2007 Author Share Posted May 16, 2007 that is, thanks! Quote Link to comment https://forums.phpfreaks.com/topic/51731-grabbing-all-variables/#findComment-254802 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.