this my show method
def showa
@posts=Post.find(:all, :conditions => “title LIKE ‘a%’”, :order=>
“id DESC”)
render :action => ‘list’
end
This is my view stmt
<%= link_to ‘A’, :action => ‘showa’ %>
I want to send A as parameter or any alphabet. This to view my posts in
alphabetical order of there titles.
Thank You.