in reply to Re: Need help with toy array. THX
in thread Need help with toy array. THX
Since an array reference is returned, you need to use '@$' to dereference the array.my $resultsRef = search_database($dbName,@toy); foreach my $result (@$resultsRef) { ... }
|
|---|