I'm Rajasekar - Web developer, Freelancer, Blogger and Owner of DeveloperDesks. From India lives in Bahrain. I love to do coding, Creating websites and trying different with code and designs. You Can Hire Me

How to Solve MySQL extension is deprecated?

How To Slove the Mysql extension is Deprecated ? and What is Deprecated Error? After PHP5 version updated mysql_connect() is updated with Mysqi_Connect(). if you used old version of MYSQL_CONNECT() for database it shows Deprecated Error For Example CODE FOR CONNECT in old version <?php $link = mysql_connect(‘localhost’, ‘user’, ‘password’); mysql_select_db(‘databasename’, $link); ?> CODE FOR CONNECT…