🔧 Building a to-do app

Let’s build a simple web app, which allows us to create a to-do list for managing our stuff.
With this task, we have to write HTML layout, use GET and POST requests for data handling, write to SQL and read from SQL, use conditional logic with PHP.

What this app allows you to do:

  1. Create a to-do list entry
  2. View a list of all the created to-do list entries
  3. Order the to-do list items by due dates
  4. Open the to-do list item to view a description of it
  5. Mark the to-do list items as “Done”

To achieve this, we need to first create a proper HTML layout; then build the SQL database structure where we keep the data; then add PHP functions and use our HTML layout.

We will try to achieve something similar.

Next step is layouting the idea in HTML.

Scroll to Top