3
votes
How do you connect/retrieve data from a MYSQL database using objects in PHP?
Since version 5.1, PHP is shipped with the PDO driver, which gives a class for prepared statements.
$dbh = new PDO("mysql:host=$hostname;dbname=$db", $username, $password); //connec …
