I have almost no knowledge in MySQL and I got a problem here:
mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead
It says that the problem is in line number 19 at the file, and that's what I found there:
$link = mysql_connect($AppConfig['db']['host'],$AppConfig['db']['user'],$AppConfig['db']['password']) or die(mysql_error());
My question is how do I fix the code? do I need to change it?
Thank you for reading this, appreciate it.