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
------------------
<CENTER><h1>Search Here</h1>
<br>
<%= form_tag :action =>"show"%>
<%= text_field_tag "q",""%>
<%= submit_tag "Go...."%>
<br>
</CENTER>
============================
show.html.erb
------------------
<h1><%=@q%></h1>
<br><br>
<%= @name.each do |h|%>
<%=h.name%>
<%=h.age%>
<%=h.gender%><br>
<%end%>
<br><br>
<%= link_to "back", :action=>"index"%>
============================
Attachments:
http://www.ruby-forum.com/attachment/5965/search.jpg
--
Posted via http://www.ruby-forum.com/.
--
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.