Hi guys. I was wondering if there was a way if I could check the checkbox and it would somehow detect the date of when it was checked and automatical add it to a certain column and row. here is what iv done so far
Table
[php]
[/php]
Adding shedules
[php]
Title Name: | |
Module Lecturer: | |
Start Date: | |
Due Date: | |
[/php]
Shedules
[php]
Title | Lecturer | Start | Due | Completed |
---|---|---|---|---|
" . $row['Title'] . " | "; echo "" . $row['Lecturer'] . " | "; echo "" . $row['Start'] . " | "; echo "" . $row['Due'] . " | "; echo "" . $row['Completed'] . " | "; echo "
In the form I left out the “completed” column which I added on the table. I want to use the checkbox to insert the date on the “completed” column. is there any way using php/javascript that I could possibly detect the detect the date and add it to the column “Completed”.