My posts have a categories, I wanted to filter the index page results for specific categories. Here is how to do it

The View:

<%= link_to "Rails Results", index_path(:category_id=>"3")

The Controller:


def index
  if params[:category_id]
    @posts = Post.where(:category_id => params[:category_id])
  else
    @posts = Post.all
  end
end