Help for this page

Select Code to Download


  1. or download this
    my %lookup = (
       FAULT_NO => 'FAULT_NO',
    ...
    );
    # task of automating the creation of the hash
    # is left as an excerise to the reader ;)
    
  2. or download this
    $order_by       = $lookup{ param('order_by') };
    $order_by_check = $lookup{ param('order_by_check') };
    ...
       ...
    }
    ...