Fixing example in pg_connect

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@33467 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
James Moore 2000-10-06 21:00:49 +00:00
parent b15d477dc8
commit 2a34f735e6

View file

@ -188,7 +188,7 @@ $dbconn = pg_Connect ("dbname=mary");
//connect to a database named "mary"
$dbconn2 = pg_Connect ("host=localhost port=5432 dbname=mary");
//connect to a database named "mary" on "localhost" at port "5432"
$dbconn3 = pg_Connect ("user=lamb passwd=baaaa dbname=mary ");
$dbconn3 = pg_Connect ("user=lamb password=baaaa dbname=mary ");
//connect to a database named "mary" with a username and password
?>
</programlisting>