gpt4 book ai didi

php - PSQL 和 PHP 的连接页面

转载 作者:行者123 更新时间:2023-11-29 12:25:30 25 4
gpt4 key购买 nike

pgconnect.php

<?php

$db_connection = pg_connect("host=localhost dbname=postgres user=postgres password=postgres");

if ($db_connection) {

echo 'Connection attempt succeeded.';

} else {

echo 'Connection attempt failed.';

}
?>

这是我的 pgconnect.php 页面。我收到一个内部服务器 500 错误。我无法弄清楚这段代码的问题。如果有人能帮助我,那就太好了。

最佳答案

您可以添加一些代码来显示错误:

$db_connection = pg_connect("
host=localhost
dbname=postgres
user=postgres
password=postgres
") or die('Could not connect:' . pg_last_error());

关于php - PSQL 和 PHP 的连接页面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40560740/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com