in reply to Difference in the code and the subroutine
to&PopulateEventDropDown(@EventList,$eventChoice);
and thisPopulateEventDropDown($eventChoice, @EventList);
is then more simply described asmy $eventChoice = shift; my @Records = @_;
hthmy ($eventChoice,@Records) = @_;
|
|---|