eventhough I've never used Oracle with PHP here is my suggestion:

create a file that will have your DB connection strings and include it in
every PHP file which uses Oracle connection.

EXAMPLE:
------------------------

[dbCon.php] file
[EMAIL PROTECTED]($o_conn_vars["username"], $o_conn_vars["password"],
$o_conn_vars["db"]);

[myPhpFile.php]

include_once("dbCon.php");
//Write youe queries now.
-- 

Muhammed Mamedov
Software Engineer
YTM.com.tr

"Syho" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> I have the following problem, please help me.  Many thanks.
>
> Script 1:
> <?php
>
> [EMAIL PROTECTED]($o_conn_vars["username"],
$o_conn_vars["password"],
> $o_conn_vars["db"]);
>
> //Parse sql statement
> //Execute sql statement.
> ..
> ...
>
> require('2.inc');
>
> ?>
>
____________________________________________________________________________
> ___________
>
> 2.inc:
>
> // This script will switch the brower to script2.php
>
> <html>
>
> <form name="s_form" action="script2.php"  method ="POST">
>
>
> </html>
>
>
____________________________________________________________________________
> ____________
>
> script2.php:
>
>
> <?php
>
> My problem is, how to get back the Oracle database connection in this
> script?  Please advise.
>
> ?>

-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to