i have a table called tasks structured like so:
task_id - auto_increment primary key
project_id - project which the task applies to
task_description
status - either complete or incomplete
on an html page that displays the tasks
if status is complete..the radio button for complete is checked else the incomplete radio button is checked.
i can display the results fine...my problem is submitting the data to the database.
if the radio buttons could have 2 values (task_id and status) it would be so much easier...then i could update status = 'Complete' where task_id = '$task_id'
can anyone suggest a way i could accomplish this?
thanks 😃