Ok - I'm writing a To-Do system in PHP. I would like to know how I would be able to create this system - but make it multi-user, so that it becomes a person to-do system for each person that logs into let's say a member's area. Thanks.
Step 1: Define Your Database with the following minimal tables: Task (TaskID, TaskName, TaskDescription, Priority) User(UserID, UserName, PasswordHash, emailAddy) TaskUser (TaskUserID,TaskID,UserID) Step 2: Create a login/sign up system to manage the user table. Step 3: Create an Add/Edit/Search/Sort/Delete page for the tasks. Step 4: Create a way to assign tasks to a user and rcord them in the TaskUser Table. With this method yom may have a many to many realtionship between Tasks and Users.