#12002/8/30 17:06:31
我手工写段代码,已经可以在服务器上正常连接POSTGRES数据库了,可我在PHPPGADMIN里,却怎么也连不上,WHY?
连接方式是 host all 127.0.0.1 255.255.255.0 truse
test.php
//连接 postgres 数据库
$conn=pg_pconnect("host=10.1.1.51 user=postgres dbname=demo password=123456 port=5432");
//看连接是否成功
if (!$conn) {
//如果失败则报告出错
echo pg_errormessage($conn);
exit;
} else echo "right"; exit;
?>
这样测试正确,可phpPgAdmin里改怎么设置?