Quote:
Originally Posted by X337
mysql_ function is deprecated and afaik, already removed on PHP 7.
You can hide that error by adding
error_reporting(0); or error_reporting(E_ALL &~ E_DEPRECATED);
at top of your script.
|
He could do this but is not really recommended for using. Best way for him is fixing that error.