I have a form that presents the user with an array. There are three hidden types in the form, plus a checkbox. When the form is submitted, it generates a 403 error. Here's the kicker. If I remove one of the hidden types, the form works and it doesn't matter which of the 3 that I remove. Any ideas?
echo "<tr>
<td>
<input type='hidden' name='thisTenant[".$row['tenant_ID']."]' value='".$row['tenant_ID']."'>
<input type='hidden' name='schedule_rent_array[".$row['tenant_ID']."]' value='".$row['schedule_rent']."'>
<input type='hidden' name='deposit_log_array[".$row['tenant_ID']."]' value='".$row['deposit_log_numb']."'>
<input type='checkbox' name='checkBox_array[".$row['tenant_ID']."]' $checkBoxStatus>$rentStatus ".$row['rent_paid']."</td>
<td>" .$row['unit_number'] . "</td>
<td>" .$row['last_name'] . ", " .$row['first_name'] . " ID" . $row['tenant_ID'] . "</td>
<td>$" .$row['scheduled_rent'] . "</td>
<td>$update_deposit_log_numb</td>
<td>" .$row['comment'] . "</td>
</tr>";
}
The form data is gathered from three tables using a LEFT JOIN. Not sure if that might affect it...?
Thanks,
Robkir