Help for this page

Select Code to Download


  1. or download this
    my %images = bpimagelist('$record->{client}');
    my %jobs = bpdbjobs();
    
  2. or download this
    post2web ( \%jobs, \%images );
    ...
    sub post2Web {
      my ( $jRef, $iRef ) = @_;
      ...
    
  3. or download this
    post2web ( { jobs => %jobs, images => %images } );
    ...
    ...
      my $jRef = %{ $Args->[ jobs ] };
      my $iRef = %{ $Args->[ images ] };
      ...