Deprecated: mysql_select_db(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO
选择数据库的时候就出来这个错误报告了
<?php
$con=mysqli_connect('localhost','root','123456');
mysql_select_db('test');
?>
PS:我百度了好久,看到一个说是在前面加上error_reporting(E_ALL ^ E_DEPRECATED);这一句就不会报错,确实管用,但是感觉麻烦。求助各位了!!