how to display the exact results by selecting the values in form
selectcity and match and print matching phone_no,name and address in
table. these is what i have done so far newbie in rails any idea will be
nice…
1.controller
class TelephoneController < ApplicationController
def index
end
def AreaWiseSearch
@telephone_records = TelephoneRecords.all
end
end
2.created a form with this action index.html.erb
|
3.areawise.html.erb
<% for telephonerecords in @telephone_records-%> Phoneno%=telephonerecords.phone_no%> - Name%=telephonerecords.name%> -Address: <%=telephonerecords.address%> <%end-%>