On Nov 18, 9:04 am, Robert Negronida <[email protected]> wrote: > When the user clicks the 'picks1' link I want $r to be equal to 1. when > the user clicks 'picks2' i wont $r to be equal to 2. At this moment with > the code i have presented earlier i constantly get $r equal to 2 whether > i click the second link or not. What is happening is that the code is > being read over and actually changing $r instead of just doing so when > the user clicks the links with the onclick. I need to figure a way to > change the $r so that it will change based on the link the user > clicks... i already had it set up with a model and it worked but i soon > realized that the amount of data entries was not ideal.
Sounds like you want to add this as a parameter to the action, for example game_pick_page_path(:test => 1) which will cause params[:test] to be set to 1. If you want to remember the value without storing it in the database, use the session (set session[:foo]) rather than a global - a global would share its value across all users of the site and won't work consistently if you have more than 1 passenger/unicorns instance Fred > > -- > Posted viahttp://www.ruby-forum.com/. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.

