很明显的提示 mysql扩展模块就要被放弃使用了,所以请使用mysqli代替
这个说明你的php版本过高造成的。解决方法:
把mysql的相关模块全都改为mysqli就行了。
比如:
1、mysql_connect 改为mysqli_connect
2、mysql_query 改为mysqli_query
3、mysql_close 改为 mysqli_close
等等!
---
转载请注明本文标题和链接:《解决The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in 报错》
发表评论