Guest User

Untitled

a guest
May 25th, 2018
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. --controller--
  2. class PostsController < ApplicationController
  3. def index
  4. @posts = Post.search(params[:query])
  5. end
  6. end
  7.  
  8. --view--
  9. <% form_tag posts_path, :method => :get do %>
  10. <p>
  11. <%= text_field_tag "query", "", "size" => 30 %>
  12. </p>
  13. <p>
  14. <%= submit_tag "Search" %>
  15. </p>
  16. <% end %>
Add Comment
Please, Sign In to add comment