I have a simple HTM开发者_如何学编程L table display of data that results from an MySQL query. I would like to have a checkbox in the first cell of each row.
I am asking for some suggestions as to where I might go looking for information on how to make this interactivity possible, as I'm sure this is not a "quick-answer" type of question.
Example: http://linux.softpedia.com/screenshots/phpMyAdmin_2.png
<input type="checkbox" name="rowid[]" value="<?= $row['id'] ?>" />
精彩评论