Date: 06/29/00
- Next message: Mike Payson: "[phplib] Simple configuration question"
- Previous message: Jeroen Laarhoven: "Re: [phplib] Very serious problem.."
- Next in thread: Jeroen Laarhoven: "Re: [phplib] Very serious problem.."
- Reply: Jeroen Laarhoven: "Re: [phplib] Very serious problem.."
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
I think this is a very serious problem..
I noticed that is not possible to open 2 diff connections no 2 diff
DataBases.. for example :
<?php
include("prepend.php3");
require("table.inc");
page_open(array("sess" => "Example_Session"));
$db = new Example_DB;
$other = new Other_DB;
$table = new Table;
$db->query("select * from active_sessions");
$table->heading = "on";
$table->show_result($db);
echo "<br> ################################################# <br>";
$other->query("select * from active_sess");
$table->show_result($other);
page_close();
?>
page close fails to save session data because it's looking the table
active_sessions on $other than $db..
Is this a bug or am I missing something ??
---------------------------------------------------------------------
To unsubscribe, e-mail: phplib-unsubscribe <email protected>
For additional commands, e-mail: phplib-help <email protected>
- Next message: Mike Payson: "[phplib] Simple configuration question"
- Previous message: Jeroen Laarhoven: "Re: [phplib] Very serious problem.."
- Next in thread: Jeroen Laarhoven: "Re: [phplib] Very serious problem.."
- Reply: Jeroen Laarhoven: "Re: [phplib] Very serious problem.."
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]

