me again...
I need show 10 or 20 or 50 results number of results per page with a select options in my list of posts using will_paginate plugin
Can you help me p
Here is what I will do
Class UsersController < ApplicationController def index @users = User.paginate(:all, :page => params[:page], :per_page => params[:number_of_records]) end end