Help for this page

Select Code to Download


  1. or download this
    # <input type="checkbox" name="search_first_class">
    # <input type="checkbox" name="search_economy_class">
    ...
       . ($search_first_class   ? ' First'   : '')
       . ($search_economy_class ? ' Economy' : '')
    ) if $DEBUG;
    
  2. or download this
    # <input type="checkbox" name="search_class" value="first">
    # <input type="checkbox" name="search_class" value="economy">
    ...
    #    . ($search_class{'first'  } ? ' First'   : '')
    #    . ($search_class{'economy'} ? ' Economy' : '')
    # ) if $DEBUG;