Maybe the code looks like something like this:
foreach(...$POST){
echo $key."<br/>;
}
|
or
You might insert a pre tag before and after for the clearer output in your browser:
And I suggest to use Xdebug. It provides an enchanted var_dump that works without pre's as well. |
||||
|
See the PHP documentation on foreach: http://php.net/manual/en/control-structures.foreach.php Your code would look something like this:
|
|||
|
|
|
If you want to do something with them programmatically (eg turn them into a list or table), just loop:
For debugging purposes:
or
|
|||
|
|
|
And if you want full coverage of the whole array, |
|||
|
|
|
|||
|
|
Or you could just print out the array keys:
|
|||||||||||
|
|
Normally I would use If using within an HTML page, it's probably worth wrapping in a |
||||
|
|