mysql_connect()在php5中显示错误

I have using php5-mysql system-Ubantu 13.10, I setup my project but when i login for my first page it give me [:error] [pid 16033] [client 127.0.0.1:53154] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /var/www/Scada/Fleet/phpcmd/login.php on line 29, can you please tell me how I can make my environment compatible to work with the code.

change Line 29 /var/www/Scada/Fleet/phpcmd/login.php on line 29

from mysql_connect() to mysqli_connect()

you have to change all mysql statements to mysqli statements to get it work. Or you use PDO.

Do

error_reporting(E_ALL & ~E_NOTICE & ~E_DEPRECATED);

in your index.php or the first line of /var/www/Scada/Fleet/phpcmd/login.php

or use mysqli or PDO instead of the old mysql extensions.