Originally Posted by
ReggieB
The point I was making concerned passing information between web pages... when your browser requests a page, Rails creates an instance of the Controller class, then calls the method name that matches the request. When the browser then requests the next page, Rails creates another instance of the Controller class and calls the method that matches the new request. So you cannot directly pass information between the method that matches one view, with the method that matches the next view because the two were created with different instances of the Controller.