20 November 17, 21:08
PHP Data Objects (PDO)
This tutorial isn't meant to be a complete how-to on SQL. It's written primarily for people currently using the mysql
What Will I Learn?
access a variety of different databases depending on which driver is installed
provides an easy way to query, retrieve results, prepare SQL statements and bake database security into your application
Description
Many PHP programmers learned how to access databases by using either the MySQL or MySQLiextensions. As of PHP 5.1, there's a better way.(PDO) provide methods for prepared statements and working with objects that will make you far more productive!
LINK
This tutorial isn't meant to be a complete how-to on SQL. It's written primarily for people currently using the mysql
What Will I Learn?
access a variety of different databases depending on which driver is installed
provides an easy way to query, retrieve results, prepare SQL statements and bake database security into your application
Description
Many PHP programmers learned how to access databases by using either the MySQL or MySQLiextensions. As of PHP 5.1, there's a better way.(PDO) provide methods for prepared statements and working with objects that will make you far more productive!
LINK