RailsCasts Pro episodes are now free!
Learn more or hide this
<% form_tag projects_path, :method => 'get' do %> <p> <%= text_field_tag :search, params[:search] %> <%= submit_tag "Search", :name => nil %> </p> <% end %>
def index @projects = Project.search(params[:search]) end
def self.search(search) if search find(:all, :conditions => ['name LIKE ?', "%#{search}%"]) else find(:all) end end