assuming that the articles table has a title field, then <% @articles.each do |article| %> <h1> <%= article.title %> </h1> <% end %>
would display it. But if I remember right, H1 tags within a table are not valid html You would have to put them into a TD tag I think. Maybe your code was right and your browser didn't display it for that reason --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---

