I would like to report a problem and ask for help with php 4.0.6 and Oracle 8 Support.
When you try to use more than one connection, the last connection
created is the one that receives every statement.
I found a workaround but I'm not quite sure if it really works everytime (not enough testing yet):
You could do the following for each connections and somehow they are available
after that:
for ($i=1; $i <= 2; $i++)
{
$oci_connection_new = OCINLogon ($oracle_user, $oracle_pass, $oracle_inst);
}
I reviewed $oci_connection_new and figured out thata it changes the recource id after the loop
Thomas