Dear all,

I would like to implement a simple date picker for my hotel booking website. (No calender required)

Minimum date would be tomorrow's. and maximum would be after 360 days.

The user would have to select the arrival day, month and year each on seperate <select> and then select the number of nights from another <select>

The script should be able to calculate the departure date from the number of nights.

finally the form would pass the arrival and departure dates to my php script using the following format YYYY-MM-DD.


Thanks in advance!

Well I have the general Idea to get you started... To calculate the date from the number of nights you need to keep counting the days from the start date.

We know that January has 31 days, February 28 and so on... but February's number of days change according to leap years... So you need some function to check if the year is leap or not (you'll find plenty on the net)...

Keep on counting the days until you hit your new date... That's it...

Let me add that I'm sure there are better solutions (Usually when it comes to dates there could be some Math involved in it and you get a formula to solve your problem).

Good luck :)

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.