解决The mysql extension is deprecated and will be removed in the future: use mysql

很明显的提示mysql扩展模块就要被放弃使用了,所以请使用mysqli代替这个说明你的php版本过高造成的。解决方法:把mysql的相关模块全都改为mysqli就行了。比如:1、mysql_connect改为mysqli_connect 2、mysql_query改为mysqli_query 3、mysql_close改为mysqli_close

1253067 TFnetwork_cn