Hi
This is probably really simple but me being me, I'm having a few troubles!!
I have a form with approximately 50 different fields - the majority are drop down boxes. I'm trying to check the $_POST variable and want to split out all variables passed when the form is submitted. I've tried using explode but am stuck on the syntax - e.g.
$items = explode('\n',$_POST[]);
Now I know this is wrong, and I have the following problems:
How can I use explode on the $POST - because I'm not sure what to split the array by.
And secondly, how do I pass in the complete $POST array so that all form field data and names will be collated ? Hopefully you can see what I'm trying to do. All help appreciated.
Thanks