PDO here as well (although I've used mysqli on servers that didn't have PDO) There are some differences with binding parameters between the two. I personally like PDO's style better. PDO also supports named parameters, which lets you do some things that you can't with mysqli.
I'd suggest looking at the two manual entries and comparing the two (especially the sample code) to get an idea of the differences. http://www.php.net/manual/en/book.mysqli.php http://www.php.net/manual/en/book.pdo.php That said, Zend_Db adds another abstraction layer so most of the time you won't even notice much of a difference. Cheers, David -- View this message in context: http://n4.nabble.com/PDO-or-Mysqli-tp1556941p1567381.html Sent from the Zend Framework mailing list archive at Nabble.com.
