Accessing session variables

session[:id] = 3

a = session[:id]

Zon

-- -- wrote:

This is not the a session variable, is a request variable:

I can't try right now, but you should pass userid in the link_to_remote

, :name => '1 star out of 5', userid => '33'

then you read it with params[:userid]

Zon

-- -- wrote: