* Thus wrote Mike Smith:
> I am trying to cache a database recordset so users can sort, etc
> without hitting the database everytime. I'm using ADODB to access a
> MSSQL database.
I wouldn't even bother with this.
No matter what you do your going to have to retreive the data
somewhere, aka sessio
way to manage this as sometime value may be too long
to store in $_GET variable.
Do You get any error on unserialization?
Zareef ahmed
-Original Message-
From: Mike Smith [mailto:[EMAIL PROTECTED]
Sent: Wednesday, November 10, 2004 10:14 PM
To: [EMAIL PROTECTED]
Subject: [PHP] Array to
Mike Smith wrote:
I am trying to cache a database recordset so users can sort, etc
without hitting the database everytime. I'm using ADODB to access a
MSSQL database.
$s = "SELECT id, part, description FROM parts\n";
$r = $db->Execute($s);
$parts = array(id=>array(),part=>array(),desc=>array())
whi
I am trying to cache a database recordset so users can sort, etc
without hitting the database everytime. I'm using ADODB to access a
MSSQL database.
$s = "SELECT id, part, description FROM parts\n";
$r = $db->Execute($s);
$parts = array(id=>array(),part=>array(),desc=>array())
while(!$r->EOF){
4 matches
Mail list logo