I have two page first one is packagebuilder.php then second one is hotel.php. I have to pass data from packagebuilder.php to hotel.php. hotel.php is caring table of hotel list and that list i want to show in the packagebuilder.php
packagebuilder.php enter image description here
this is input section when i put all the detail in the form then click on the submit button then only hotel list section should be refresh with the hotel list of item in the table not the whole page
<div>
<select id="Country" class="dropdown">
<option value="">Select</option>
...
</select>
<select id="Destination" class="dropdown">
<option value="">Select</option>
...
</select>
<input type="date" name="checkin" id="name" placeholder="Date" required/>
<input type="date" name="checkout" id="name" placeholder="Date" required/>
<input type="text" name="hotel" id="hotel" placeholder="Hotel... Optional" required/><br/><br/>
<select id="room" class="dropdown">
<option value="">Select</option>
...
</select>
<select id="adult" class="dropdown">
<option value="">Select</option>
...
</select>
<select id="child" class="dropdown">
<option value="">Select</option>
...
</select>
<select id="infant" class="dropdown">
<option value="">Select</option>
...
</select>
<select id="ratingmin" class="dropdown">
<option value="">Select</option>
...
</select>
<select id="ratingmax" class="dropdown">
<option value="">Select</option>
...
</select>
<input type="submit" id="submit" name="submit" value="Submit" class="button">
<br/><br/>
</div>