It should be:
$BOOKS = $BOOKS.",".$bookid;

Rudolf Visagie
Principal Software Developer
Digital Healthcare Solutions
<mailto:[EMAIL PROTECTED]>
Tel: 011 2655478
Cell: 082 895 1598
 

-----Original Message-----
From: Sachin Keshavan [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, July 10, 2002 8:03 AM
To: [EMAIL PROTECTED]
Subject: [PHP] Storing values in Session


Hello,

I want to add a set of values to the session variable $BOOKS. This is the
code which I used.

        if($BOOKS=="")
        {
                #this seems to be the first book which the user has selected
                $BOOKS = $bookid; #this param comes from the URL
        }
        else
        {
                $BOOKS = $BOOKS+","+$bookid;
        }

Here the 'if..' part gets executed, and because of that I cannot add details
of another book. I have initialised the session and added the registered the
value "BOOKS" in the previous page.

Thanks in advance,
Sachin.

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

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

Reply via email to