Simple question: Is it possible to get all the data POSTed to a page, even if you don\'t know all the fields?
For example, I want to write a simple script that colle
Yes you can use simply
$input_data = $_POST;
or extract() may be useful for you.