Hi all,
I'm sure this is a pretty basic thing, however I've searched for the result with no luck, and was just wondering if someone could give me some advice.
I want to pass an existing array in php through a post method form. This is what I have so far.
//The $Variation array is setup already before doing this.
echo "<input type=\"hidden\" name=\"VariationName[]\" value=\"".$VariationName[]."\" />\n";
However it's not working properly. How do I submit an array to a post form, then put it back into a php array on the following page?