On 25 July 2011 02:38, Ivan Santana <[email protected]> wrote:

> Hi, Im reading an old tutorial about instance variables.
>
> However i wasnt able to call de instance variable from the CONTROLLER to
> the VIEW.
>
> The code is:
> ----------------------------------
> VIEW :
>
> <html>
>  <head>
>    <title> title </title>
>  </head>
>  <body>
>    <p>            line 1       </p>
>    <p> <%=       @text   %>    </p>
>
>  </body>
> </html>
>
> --------------------------------
> CONTROLLER:
>
> class MoviesController < ApplicationController
>  def movies
>    @text = "movietitle"
>  end
> end
>
> ---------------------------------
>
> When i load the page, it only shows the line 1 paragraph.
>
> How can i call the instance variable @TEST?
>
> --
> Posted via http://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 this group at
> http://groups.google.com/group/rubyonrails-talk?hl=en.
>
>
You *can* see Controller instance variables in views.  The question is, is
that method #movies in your controller actually being called?

-- 
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 this group at 
http://groups.google.com/group/rubyonrails-talk?hl=en.

Reply via email to