On Mon, Mar 25, 2002 at 02:49:07PM -0500, Scarbrough, Jeb (ISS Atlanta) wrote: > Is it possible to create a transaction the involves multiple pages using PHP > and oracle. For example, can I log onto oracle using OCIPLogon on one page > named master, insert information, go to the next page named detail, insert > information and commit both transactions at the same time?
no you can't - bacause HTTP is stateless and it is unlikely that your 2nd page will be served by the same httpd process there's no way to have transactions span multiple pages. you will have to emulate this behaviour! tc -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php