Search⌘ K

Project Challenge: Create a Task Management Application

Discover how to build a multi-user task management application using pure PHP. Learn to implement login authentication, session storage, form handling, and page redirects to secure pages accessible only to logged-in users.

Problem statement

Here is a coding challenge that incorporates everything we covered up to this point. We are going to create a basic task management application that can be used by multiple users. You should be able to reuse many of the scripts we have created before, but it is advised you create a new project for this challenge. For your convenience, we have already done that.

Tasks:

  1. Create a page called /tasks that can only be accessed
...