Programmer Blog: http://programmerblog.net
Source code for Programmer blog article: https://programmerblog.net/jquery-drag-drop-todo-list-php-mysql/
Following tasks are performed in this tutorial
-
Create a MySQL database and database table for todo list items
-
PHP code to connect to database.
-
Create php code to fetch incomplete and complete todo list items
-
Display records on page in incomplete todo list items to the left side of page.
-
Incomplete list items will be draggable.
-
Complete list items will be displayed to the right side of the page.
-
Completed list item area will be droppable.
-
Add drag and drop jQuery code.
-
After the item is dragged send an AJAX request to update status of list item as completed.