Can i store multiple values in session ? how?

hi,

i m calling following method on " onclick " event of checkbox and i m
getting id of all selected checkboxes, but now i want to store multiple
ids to store in session , can i? or any other options?

def checksel
@data=""

data = params[:p_id]
stat=params[:stat]

if stat==“true”
@tmp = data

end
end

‘The easy way is to concatenate the ids and store in the session
variable’

On Feb 9, 5:24 am, Trupti B. [email protected]
wrote:

stat=params[:stat]

if stat==“true”
@tmp = data

end
end


Posted viahttp://www.ruby-forum.com/.

You can store all kinds of stuff in a session, but it will all get
stored on your disk or wherever your sessions are stored and could
take up alot of space if you don’t clear it out over time.

suppose myrec was an array of some kind of records. You could store as
many as you like in the session:

myid = :‘id432343’
@session[myid] = myrec[0]
myid = :‘id432343’
@session[myid] = myrec[1]