Search dates by params

Hi, all

Now I am doing "Hotel" website where users can select room and arrival and leave dates, and I can put into shopping cart. So I want to create a search form where users can select dates such like:

<p><label for="room_checkin_date">Checkin date</label><br/> <%= date_select 'checkin_date', params[:checkin_date] %></p>

But it doesn't wok... Could you tell me how to do it? Thank you!!!

Lucy wrote:

Hi, all

Now I am doing "Hotel" website where users can select room and arrival and leave dates, and I can put into shopping cart. So I want to create a search form where users can select dates such like:

<p><label for="room_checkin_date">Checkin date</label><br/> <%= date_select 'checkin_date', params[:checkin_date] %></p>

But it doesn't wok... Could you tell me how to do it? Thank you!!!

The first parameter to date_select should be the 'object' or variable according to the framework documentation. The second is the attribute or member (probably checkin_date in this case).

Norm