I have the following form that uses some jQuery to allow an array of files to be submitted:
<form enctype="multipart/form-data" action="index.php" method="post" >
<input type="file" class="multi" name="test[]" />
<input type="submit" value="submit" name="submit" />
</form>
When I use method="get"
I get the following URL when submitted:
http://website.com/index.php?test[]=image.jpg&test[]=image2.jpg&submit=submit
How do I gather the test[]
array data using $_POST and/or $_FILE using method="post"
?