I have a work-in-progress class to handle update/edit of forms, but my
general strategy for checkboxes has been to include another hidden
field which has a value of 1 so you know that there should be an
accompanying field. e.g.
f_checkboxname is your checkbox
c_checkboxname is your fake field
in
I have made function that automaticly inserts/updates the fields in a mysql
database from the $HTTP_POST_VARS variable. So when a user submits a form is
will autimaticly update the database. The problem I am having is that i need
to be able to submit unchecked checkboxes.
Does anyone know how to