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