Hello I m newbie in rails
i create simple application which take data from user search in DB and
show output but it not show properly it’s show what i want plus it show
whole hash elements which is i don’t want. i am attaching output screen
shot here
Here r my app files
============================
class SearchController < ApplicationController
def index
@q=params[:q]
end
def show
@q=params[:q]
@name = Frnd.find(:all, :conditions=>{:name=>@q})
puts "name is "[email protected]
end
end
index.html.erb
Search Here
<%= form_tag :action =>"show"%> <%= text_field_tag "q",""%> <%= submit_tag "Go...."%>
============================ show.html.erb ------------------
<%=@q%>
<%= @name.each do |h|%> <%=h.name%> <%=h.age%> <%=h.gender%>
<%end%>
<%= link_to "back", :action=>"index"%> ============================
