What is difference between mysql,mysqli and pdo ?
http://php.net/manual/en/mysqli.overview.php http://phppot.com/php/mysql-vs-mysqli-in-php/ There are (more than) three popular ways to use MySQL from PHP. (DEPRECATED) The mysql functions are procedural and use manual escaping. mysqli is a replacement for the mysql functions, with object-oriented and procedural versions. It has support for prepared statements. PDO (PHP Data Objects) is a general database abstraction layer with support…