hello, I am building a search page that are links. How can i save what the user pressed pages before? -- Posted via http://www.ruby-forum.com/.
On 8/1/06, koloaTree <none@none.com> wrote:> hello, > I am building a search page that are links. How can i save what the user > pressed pages before?Copy the params value(s) into a session. session[:last_query] = params[:query] -- Greg Donald http://destiney.com/
hello, thanks. but do you know of a tutorial that gives example on how to use session obj? Greg Donald wrote:> On 8/1/06, koloaTree <none@none.com> wrote: >> hello, >> I am building a search page that are links. How can i save what the user >> pressed pages before? > > > Copy the params value(s) into a session. > > session[:last_query] = params[:query]-- Posted via http://www.ruby-forum.com/.