|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2000-10-06 16:59 UTC] jmoore@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2026 The PHP GroupAll rights reserved. |
Last updated: Sun Jun 14 16:00:02 2026 UTC |
In your Example you write the following: "$dbconn3 = pg_Connect ("user=lamb passwd=baaaa dbname=mary ");" and later on "The arguments available include dbname port, host, tty, options, user, and password ". The Codeline in your Example won't work with PHP 4.0.2, until you change it into "$dbconn3 = pg_Connect ("user=lamb password=baaaa dbname=mary ");". You have to write "password=" instead of "passwd="! CU AndiB