I have a html table with the following field: Job Completed
I would like to put a checkbox on each row of the completed column only using php amd HTML.
I want the value of yes/no to be store in my mysql database.
My MySQL table has a table called data with a row called job, I just can’t get this to work, my MySQL table has empty values as well.
//html table
<td width="93" bgcolor="#CCCCCC"><strong>Job Completed</strong></td>
I also have my results section
<td><input type="checkbox" name="names[<?php echo $result['id']; ?>" value="yes"/></td>