Book Image

Beginning PHP

By : David Carr, Markus Gray
Book Image

Beginning PHP

By: David Carr, Markus Gray

Overview of this book

<p>PHP is the preferred server-side scripting language for tech giants such as Facebook, Wikipedia, and Tumblr despite full-stack JavaScript gaining popularity with upcoming developers. This is because PHP performs better when dealing with heavy computations on the back end. In this book, you’ll learn everything you need to get up and running with the latest version of PHP, including package management with tools such as composer, secure database operations, and a whole host of other best practices that will help you stay a step ahead of traditional programmers. </p><p> </p><p></p>
Table of Contents (12 chapters)
Beginning PHP
Contributors
Preface
Free Chapter
1
Getting Started with PHP
2
Arrays and Loops
Index

Chapter 8. Building a Contacts Management System

In the previous chapter, we have completed building functionality onto the framework, which allows for the management of users. We have performed the inclusion of Bootstrap to give some basic-level styling to our application. We have also implemented a password recovery mechanism in our application.

In this chapter, we will build a contacts CRUD (Create, Read, Update, and Delete) section, which will have a view page to view an individual contact. The view page comments can be recorded against the contact. We will also be building the comments system for our contact application.

By the end of this chapter, you will be able to:

  • Implement CRUD functionality in our contacts application

  • Build a comments system in our contacts application