Form separate from ActiveRecord

all the forms Post data will be in the params hash.

forms are never bind to a specific model, the params hash always contains the POST data of a submitted form

so if you have a <input type="text" name="search" value="">

you can access this fields content with params[:search]

etc. etc.