Create a simple To Do List in DooPHP – Part 2
Introduction
This tutorial will guide you through all the steps required to get started using DooPHP through the creation of a simple To Do List Application. The tutorial is split into a number of sections and you will need to read the guide from the begining in order to understand whats going on.
- Part 1 – Getting Started
- Part 2 – The Signup Form
- Part 3 – User Authentication – Coming Soon
- Part 4 – The To Do List – Coming Soon
- Part 5 – Adding AJAX Functionality – Coming Soon
Creating the Signup Form
The first thing we need to do is to create a new controller which will handel registration tasks. For this we will create a new Controller with the name RegistrationController and this will handel all aspects of registration. Right now this will consist of a single action – Signup. Therefore we must create a new file public_html\protected\controller\RegistrationController.php and the contents of this file will be:
More »
