[PHP] Re: saving resource objects

2003-12-17 Thread Leendert
"Michael Lewis" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > I posted this on the PHP-DB list and then realized it was a more general > question about PHP than DB so I am posting it here also hoping someone can > help. > > I have a fairly common problem that I have not been able t

Re: [PHP] Re: saving resource objects

2003-12-16 Thread Justin Patrin
If you're doing a large JOIN (which slows things down) you might try writing it all as multiple queries in PHP and having PHP join it together. It *may* be faster, especially for many joins. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Re: saving resource objects

2003-12-16 Thread Michael Lewis
Thanks, Justin. I'll look into it. Michael - Original Message - From: "Justin Patrin" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, December 16, 2003 9:28 PM Subject: [PHP] Re: saving resource objects > Michael Lewis wrote: > > >

[PHP] Re: saving resource objects

2003-12-16 Thread Justin Patrin
Michael Lewis wrote: How can I pass this variable and its contents so they are usable to the next web page? The short answer is that you can't pass resources back and forth between pages. You could consider passing the current index, rerunning the query, and seeking to the new index. OR, you cou