Search⌘ K

Project Challenge: Create and List Tasks

Explore how to split task management into separate pages for creating and listing tasks using PHP and JSON storage. Learn to validate form data, save tasks per user sessions in a JSON file, and restrict page access to logged-in users to build secure CRUD functionality.

Problem statement

This challenge builds on top of the previous one, so we will continue to work on the project that we have already created.

Next steps:

  • Split the existing /tasks page in a /list-tasks page and a /create-task page. The form goes to the /create-task page, and the list of previously created tasks
...