Add a Task

Learn how to work with tasks.

The task form

We’ll create a new file called task.php from project.php. Let’s add the form:

 <label for="project">Project</label>
 <select name="project" id="project">
   <option value="">Select a project</option>
   <!-- options here -->
 </select>
 <label for="title">Title</label>
 <input type="text" placeholder="New task" name="title" id="title">
 <label for="date">Date</
...