Jump to content

[SOLVED] Finding unknown passed variables


TheNix

Recommended Posts

So I want a page to discover any passed variables from any source (post, get, cookies). I don't know what the variable names are that will be passed. How do I get the names and values? If you can show me an example of post i can probably apply the same method for get and cookies. Thank you.

Link to comment
https://forums.phpfreaks.com/topic/146410-solved-finding-unknown-passed-variables/
Share on other sites

It should be:

$vars = $_REQUEST;
foreach($vars as $key => $var)
{
echo "Passed Name: ".$key."; Value: ".$var;
}

 

I prefer:

echo '<pre>';
print_r($_REQUEST);
echo '</pre>';

 

Although use of REQUEST can be iffy and unsecure (as with all user inputs)

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.