Hi; I suspect this is going to be a java-scripty thing (not too much experience with this).
Say I am showing a visitor a list of items in a table and they are allowed to make a selection with a checkbox at the end of each row. (I would usually set the whole table up as a form, and then have a submit button to send all the checked records into a MySQL table.) This, I know how to do with .php
However, I know it is possible to use a checkbox as a submit control...I was just wondering if (maybe with javascript), clicking the box would do the following invisibly in the backrground:
1) leave the table display up without need to reload.
2) leave the clicked checkbox(es) in a clicked state.
3) use the value(s) held in the checkbox code as the record (each checkbox is it's own form)
3) save the record for future reference in the MySQL table on the server.
Thanks for any specifics, links to code samples, etc. on this.