October 2017
Beginner
690 pages
12h 43m
English
In the last chapter, I showed you how to write generic, reusable functions that could be used to manipulate any database table. In this chapter, we’ll move those functions into a class, to avoid some of the repetition that’s needed when they’re used.
One of the biggest problems with functions is that all the information they need to execute has to be sent to them in arguments. In the case of the delete function we wrote, there are four pieces of information:
$pdo database instanceThe same is true of all the functions—findById, findAll, update, insert and save. Each of the functions we created needs to be passed at ...
Read now
Unlock full access