Re: [PHP-DB] passing db persistent connections through different pages

2001-06-22 Thread boltthrower
On Thu, 21 June 2001, "Christopher Ostmo" wrote: > The persistence of the DB connection follows the child process that > serves your individual web page request. The first time a child process > requests a persistent DB connection, it will maintain that connection > until the child process di

[PHP-DB] passing db persistent connections through different pages

2001-06-21 Thread boltthrower
hello, I've this silly question: how can I pass a db persistent connection from a script to another? (it seems there's no way: but what's the use then of them?) eg, I tryed this 2 scripts (with Oracle 8.1.6) $conn"; ?> $conn"; OCILogOff($conn); ?> this works if both are on the same page,