in reply to Keeping separate array data related
Add this before a loop that iterates over the array:
%seen = ();
Add an unless after your submit_form call. $item is the current item from @texts.
mech->submit_form( .... ) unless $seen{$item}++;
TheEnigma
|
|---|