Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 05/06/21 in all areas

  1. Alternatively, you could use the follwoing to show only the main airline in the select box: <dd> <select name="code" id="code"> <?php foreach($allairlines as $airline) { if($airline->code == "ABC")//"ABC" is your 3 letter airline's code. { echo '<option value="'.$airline->code.'">'.$airline->code.' - '.$airline->name.'</option>'; } } ?> </select> </dd>
    1 point
×
×
  • Create New...