Hi All,
I am building a hotel reservation script so far so good, however I need to be able to put in a day rate that overrides the normal price e.g
a Single Room can be £60 in the week but at weekend it can be £70
My database is setup like
id
hotel_id
room_title
normal_price_per_night
I think i need to to setup another table where user can put his prices in for a certain day or period of time.
like
id
room_id
price_rate
start_date
end_date
Please advise which is the best way to do this and any examples for selecting the data and pricing would be a very big help.