I'm submitting a form with with table structure:
Code:
<table method="POST" action="file.php">
<td><input type="checkbox" name="checkboxArray[]" value="xyz"></td>
<td><input type="text" value="x"></td>
<td><input type="text" value="y"></td>
<td><input type="text" value="z"></td>
<td name="textArray[]></td>
There are several table involved.
My problem is that when I try to access the arrays, only the checkboxArray is available/visible in $_POST. Does anyone have a solution?