Hi All,
These days I am implimenting a Hotel Room Reservation system.
I have a small problem in Check Availability' page.
below I listed my database structure.
rooms
rid int(11) <--- AI
name varchar(255)
ppn varchar(50)
facilities mediumtext
reservations
resid int(11) <--- AI
rid int(10)
arrival date
departure date
System >> You will enter a arrival and departure. System will search & list the available rooms within user entered data range.
Please help me to write sql query for search and list availble rooms.
Thank You