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 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? 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! Link to comment https://forums.phpfreaks.com/topic/51731-grabbing-all-variables/#findComment-254802 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.