I have a form on my page with a bunch of inputs and some hidden fields, I\'ve been asked to pass this data through a \"post array\" only im unsure on how to do this,
If you want everything in your post to be as $Variables you can use something like this:
foreach($_POST as $key => $value) { eval("$" . $key . " = " . $value"); }