Sunday, 1 November 2015

Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future:

To sreolve the deprecation message  you can prefix the mysql_connect with @:
eg:



<?php
$connect = @mysql_connect('localhost','root','');
mysql_select_db('dbname');
?> 

No comments:

Post a Comment