might be basic question but need help
def list
search_alpha = params[:starts_with]+’%’
@posts = Post.find( :all, :conditions => [ “title LIKE ?”,
search_alpha ] )
#@post_pages, @posts = paginate :posts, :per_page => 10
end
I want to paginate the @posts. The commented line dispaly all posts but
not quired posts.
Thank you.