Help for this page

Select Code to Download


  1. or download this
    build_url($account, [ $transaction, [ $location, ] ] $fname, $lname);
    
  2. or download this
    sub build_url {
       my $lname = pop;
    ...
       my ($account, $transaction, $location) = @_;
       ...
    }
    
  3. or download this
    sub build_url {
       my $account     = shift;
    ...
       my $lname       = shift;
       ...
    }
    
  4. or download this
    sub build_url {
       splice(@_, 1, 0, (undef)x(5-@_))
       my ($account ,$transaction, $location, $fname, $lname) = @_;
       ...
    }