in reply to Making a WWW::Search loop

You probably meant:
@se = ('AltaVista', 'Excite', 'Infoseek', 'Lycos'); $search = new WWW::Search($se);
You might want to consider running it under use strict and changing it to:
foreach my $se (qw(AltaVista Excite Infoseek Lycos)) { my $search = new WWW::Search($se); # etc
Hope this helps...

gav^