February 2022
Beginner
680 pages
11h 34m
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—find, findAll, update, insert and save. Each of the functions we created needs to be passed at least ...
Read now
Unlock full access