打开PHP网站时显示“不能连接服务器!”

打开PHP网站时显示“不能连接服务器!”,第1张

首先检查

apache的日志文件,看里面说什么,日志通常在/var/log/apache2

或者

/var/log/httpd下面

其次在index.php打开调试开关,获得更多调试信息,在php开始位置加入

error_reporting(e_all)

ini_set("display_errors",

1)

其次检查index.php的目录下有没有.htaccess文件,改名以后看看

如果还是不知道原因,追问我。

$host='127.0.0.1'

$user='root'

$password='root'

$dbName='dbName'

$link=new mysqli($host,$user,$password,$dbName)

if ($link->connect_error){

die("连接失败:".$link->connect_error)

}

$sql="select * from admins"

$res=$link->query($sql)

$data=$res->fetch_all()

var_dump($data)


欢迎分享,转载请注明来源:夏雨云

原文地址:https://www.xiayuyun.com/zonghe/187776.html

(0)
打赏 微信扫一扫微信扫一扫 支付宝扫一扫支付宝扫一扫
上一篇 2023-03-30
下一篇2023-03-30

发表评论

登录后才能评论

评论列表(0条)

    保存