I've had quick search through the forums, and couldn't find anything related to this!
What i'm trying to do is take 3D array data from a form of variable length (depending upon how many dba entries are called).
The form is to allow me to quickly edit around 40 odd users with varying pieces of data for each.
When the form is generated, each user has 5 pieces check boxes associated to it in the array, as below.
<input type='checkbox' name='pass[29][mon]' value='1'>
the first [] being the individual user, the second the relevant data.
The form is being generated as it should be, however when its posted to be processed, none of the information is being recieved. It could be that i'm trying to call it wrong ($_POST['pass[$i][mon]'], $i being the users ID generated whilst looping through)? I've not had to deal with 3d arrays before, or arrays from forms, so i could be doing this entirely wrong!
Hopefully i've been clear enough in this! If not, ask for more!
~Tom