Help for this page
next unless ( grep( /$name/, @names )); print "$name isnt in the array so continue";
if ( grep( /$name/, @names )) { print "name is in the array"; } #but this doesnt suit my needs.