Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl -w
    
    ...
        print "\nBroker: $_\n"; # this is the broker name
        print $brokers{$_};     # this is the data (includes name)
    }
    
  2. or download this
    @brokers = keys %brokers;
    @data    = values %brokers;