-
Book Overview & Buying
-
Table Of Contents
CodeIgniter Web Application Blueprints
By :
There are quite a few view files and e-mail template files in this project—in fact, we're going to create 10 view files, three e-mail scripts, and one header file each specific to logging in and amending a navigation file. Right, let's get to it.
The following are the standard view files used in this project:
path/to/codeigniter/application/views/users/new_user.php: This displays a form to the admin user, allowing them to create a user. The new user is sent an e-mail that welcomes them to the system and informs them of their password. The e-mail script is /views/email_scripts/welcome.txt.
path/to/codeigniter/application/views/users/view_all_users.php: This displays a list of users currently in the system. Admin users are able to edit or delete a user.
path/to/codeigniter/application/views/users/delete_user.php: This displays a confirmation page to the admin user. This is displayed if the admin user presses Delete in the view_all_users/php view. The confirmation page asks...