get_magic_quotes_gpc() There is a PHP feature or function called as magic quotes that was created to help protect newbie programmers from writing bad form processing code. Magic quotes will automatically escape risky form data that might be used for SQL Injection with a backslash \.   The characters escaped by PHP magic quotes includes :…

PDO : PHP Data Object PDO is an acronym for PHP Data Objects. It is a database access layer providing a uniform method of access to multiple databases. Use of PDO : Let a suppose you need to connect your database to Oracle or IBM DB2 in your existing code(written in MySQL/PHP) or if you…