File: controllers\hello_controller.rb
class HelloController < ApplicationController
def there
@counter1 = 1
if(session[:counter2])
@counter2 = session[:counter2]
@counter2 += 1
session[:counter2] = @counter2
else
@counter2 = 1
session[:counter2] = @counter2
end
end
end
File: app\views\hello\there.rhtml
Using Sessions
Working With Sessions
This Ruby on Rails application lets you store data in sessions.
<%= form_tag ({:action => "at"}, {:method => "post"}) %>
Counter 1: <%= @counter1 %>.
Counter 2: <%= @counter2 %>.
<%= form_tag %>
Start the WEBrick server: ruby script/server
Navigate to http://localhost:3000/hello/there
sessionVariable.zip( 91 k)