I've got a list on a form that users can multiselect. All easy so far.
I pass that array to a new page through a query string.
My ISP has GLOBALS turned off, so...
How do I pass the $_POST["$querystring[]"] into another array so I can use it.
Primarily, I need to then implode it.
My code looks a bit like:
$newarray = $_POST["$querystring[]"];
$newstring = implode(",", $newarray);
But doesn't work, and neither does making $newarray into $newarray[].
Hope someone can help.
ironinthesoul.