Challenge: PHP Database
Try to implement a database class that connects with the database and a user class that inserts objects in the database.
We'll cover the following...
Task
-
Write a class named
Db
that can connect with the database using the private property$dbh
. The class should be able to create the connection with the database, have a method that can get the connection for the use of other ...