I am getting this warning, but the program still runs correctly.
The MySQL code is showing me a message in PHP:
Deprecated: mysql_connect(): T
There are a few solutions to your problem.
The way with MySQLi would be like this:
To run database queries is also simple and nearly identical with the old way:
Turn off all deprecated warnings including them from mysql_*:
The Exact file and line location which needs to be replaced is "/System/Startup.php > line: 2 " error_reporting(E_All); replace with error_reporting(E_ALL ^ E_DEPRECATED);