Help for this page

Select Code to Download


  1. or download this
    %empl = (
               100000 =>  "data for employee 100000 will go here",
               100001 =>  "data for employee 100001 will go here",
               ...
    );
    
  2. or download this
    %empl = (
               '100000' => {   first_name => 'Joe',
                               last_name  => 'Smith',
                               ...
    
  3. or download this
    %empl = (
               '100000' => {   first_name => 'Joe',
    ...
                                                  'Anytown, USA 999999'
                               ],
                               ...
    
  4. or download this
    %empl = (
               '100000' => {   first_name => 'Joe',
    ...
                                                  fax    => '111-111-1113'
                               }
                               ...