If I have a form with hidden fields in this format:
<input type="hidden" name="mydata[]" value="one">
<input type="hidden" name="mydata[]" value="two">
<input type="hidden" name="mydata[]" value="three">
Will I be able to access these three values as an array with $_REQUEST?
Yes. The result should be something like this: