Solution:
mysql_connect()
is a function that was there till PHP 5.2
, and was deprecated in PHP 5.5.0, and it was removed in PHP 7.0.0. Instead, the MySQLi or PDO_MySQL extension should be used. Ref: PHP Manual
Solution:
mysql_connect()
is a function that was there till PHP 5.2
, and was deprecated in PHP 5.5.0, and it was removed in PHP 7.0.0. Instead, the MySQLi or PDO_MySQL extension should be used. Ref: PHP Manual