MohammedALYousfi Posted September 3, 2017 Report Share Posted September 3, 2017 Hi , i am trying to desgin new skins and would like to show new form to search flight by use RealScheduleLite template here an example how i want to do in frontpage https://w3layouts.com/wp-content/uploads/2016/09/flight_ticket_booking.jpg but when i search or write name or code of the airport it dose not show anything i am using look like form code in airport_search.tpl but in new form in frontpage NOTHING IS HAPPEN , NO AIRPORT SHOW once i click SEARCH i need to forward to flights available template Quote <tr> <td>Select Departure Airport</td><td> <select class="search" name="depicao"> <option value="">All Departure Airports</option> <?php foreach ($airports as $airport) {echo '<option value="'.$airport->icao.'">'.$airport->icao.' - '.$airport->name.'</option>';} ?> </select> </td> </tr> <tr> <td>Select Arrival Airport</td><td> <select class="search" name="arricao"> <option value="">All Arrival Airports</option> <?php foreach ($airports as $airport) {echo '<option value="'.$airport->icao.'">'.$airport->icao.' - '.$airport->name.'</option>';} ?> </select> </td> </tr> <tr> <td colspan="2"> <center> <input type="hidden" name="action" value="findflight" /> <input type="submit" name="submit" class="btnblue" value="Search Flight" /></center> </td> </tr> Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.