pg_pconnect

From: sector119(at)mail(dot)ru
To: pgsql-php(at)postgresql(dot)org
Subject: pg_pconnect
Date: 2002-12-27 09:09:02
Message-ID: 20021227090902.GA2637@city.gov.te.ua
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-php

Hi

<?
echo "<html><body>\n";
$db = pg_pconnect("dbname=$dbname user=$user password=$dbpassword");
if (!$db)
echo "Connection can not be established!<br>\n";
else
echo "Connection established!<br>\n";
echo "<a href=\"cursor4.php\">next screen</a><br>";
echo "</body></html>";
?>

<?
echo "<html><body>\n";
if ($db)
echo "db handler is still valid!<br>\n";
else
echo "db handler does not exist anymore!<br>\n";
echo "</body></html>";
?>

when I click on next screen link I get db handler does not exist anymore! why???

--
WBR, sector119

Responses

Browse pgsql-php by date

  From Date Subject
Next Message Andrew McMillan 2002-12-27 09:13:53 Re: pg_pconnect+PostgreSQL cursors
Previous Message sector119 2002-12-27 06:10:10 pg_pconnect+PostgreSQL cursors