Hi, am new to php coding but through help from other PHP programmers, I have been able to come up with an online hotel reservation system as you can see on this link: http://sunsethotel.x10.bz/index.php
This website is working but I would like to make some modifications in the reservations engine. The hotel has 5 different types of rooms and each room has an id i.e from 1-6. Each room also has a meal plan of Bed Only (BO), Half Board (HB) and Full Board (FB) with the prices stored in the database.
On this page:http://sunsethotel.x10.bz/testing.php, I would like to include a drop down list on each of the rooms displayed so that the customer can select the meal plan before making a reservation.
Upon clicking the “reserve” button, the prices should be retrieved from the database based on the meal plan and room id, perform a calculation and post the results back to the database.
This website currently does this calculation but only for Full Board (FB) and not for Bed Only (BO) or Half Board (HB).
Would someone with an idea assist please?