RE: [PHP-DB] Session Question

2003-06-15 Thread Peter Monk
Graeme, What version of PHP? If you're using $HTTP_SESSION_VARS[] to store your variables (if 4.0.6 or earlier) or $_SESSION[] (if later) you shouldn't use session_register(). Peter. -Original Message- From: Boa Constructor [mailto:[EMAIL PROTECTED] Sent: Sunday, 15 June 2003 3:50 AM

Re: [PHP-DB] Session Question

2001-12-12 Thread Russ Michell
I would add each item's unique item id to an array and pass the array as the session variable. Then use serialize($array) and unserialze($array) to pass the array from script to script. You could then loop thru the array at the checkout and insert the vars into your database. HTH Russ On Tue,