If I had
<input type="text" name="myArray[0]">
<input type="text" name="myArray[1]">
Could I access that field in the POST array like this?
$_POST['myArray[0]']
$_POST['myArray[1]']
(Background: I am trying to store multiple text inputs in an array in Wordpress, but I am not able to get it working)