Jas <mailto:[EMAIL PROTECTED]>
    on Wednesday, December 10, 2003 3:44 PM said:

> having no idea you could use numbers as session variable names I kinda
> feel like a retard right now.  You solution worked, thank you very
> much.

It's an array just like any other which you probably realize now. ;)

Also, unless you're doing some math or something with those variables
you might to split them up into their own cells (I don't really know if
this is going to be useful for you or not):

{
        $_SESSION[$iCtr]['var1'] = $var1;
        $_SESSION[$iCtr]['var2'] = $var2;
        $_SESSION[$iCtr]['var3'] = $var3;
        $_SESSION[$iCtr]['var4'] = $var4;
        $_SESSION[$iCtr]['var5'] = $var5;
        ...
}



HTH,
Chris.
--
Don't like reformatting your Outlook replies? Now there's relief!
http://home.in.tum.de/~jain/software/outlook-quotefix/

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to