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,
You can use the built-in function:
extract($_POST);
it will create a variable for each entry in $_POST.
$_POST