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.

Reply via email to