php – mysqli_connect无法正常工作

前端之家收集整理的这篇文章主要介绍了php – mysqli_connect无法正常工作前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我安装了apache,PHPmysql.现在,当我执行PHP代码时,MysqLi_connect()不起作用,它都没有在die中显示消息.

$dbc=MysqLi_connect(' ',' ',' ') or die('not connecting');

现在有人告诉我我将传递给MysqLi_connect的数据库用户名和密码.我不记得我被要求提供任何用户名或密码
为什么不是die()中的消息出现?

我的var_dump(function_exists(‘MysqLi_connect’));输出bool(false)..如果它与它有任何关系,我该如何纠正它.

最佳答案
看起来没有安装MysqLi扩展. var_dump是什么(function_exists(‘MysqLi_connect’));输出
原文链接:https://www.f2er.com/mysql/434261.html

猜你在找的MySQL相关文章