NodeReaper has asked for the wisdom of the Perl Monks concerning the following question:

This node was taken out by the NodeReaper on Tue Jul 27 16:58:34 2004 (EST)
  • Comment on Difference in the code and the subroutine

Replies are listed 'Best First'.
Re: Difference in the code and the subroutine
by Anonymous Monk on Jul 27, 2004 at 20:48 UTC
    Maybe try changing:
    &PopulateEventDropDown(@EventList,$eventChoice);
    to
    PopulateEventDropDown($eventChoice, @EventList);
    and this
    my $eventChoice = shift; my @Records = @_;
    is then more simply described as
    my ($eventChoice,@Records) = @_;
    hth