[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Re: Postgre/PHP installation woes



Danny O'Brien wrote:


Parse error: parse error in /var/www/srp/dbconnect.php on line 5

With this error...


 $link = pg_connect ("", "", "", "", "ourdb" or
die ( "Could not connect to database." );

You are missing a closing bracket for pg_connect. With the bracket:
$link = pg_connect ("", "", "", "", "ourdb") or
                       die ( "Could not connect to database." );
HTH
Chris



Reply to: