#!usr/bin/perl
for($x=0;$x<=1000;$x++){print "Content-Type: text/html\n\n";
my $url = "website to click goes here";
use LWP::UserAgent;
use HTTP::Request::Common qw(GET POST);
my $agent = LWP::UserAgent->new;
my $req = GET $url, Referer => "(http://www.google.com/search?hl=en&q=a+b+c&btnG=Google+Search&meta=)";
print $agent->request($req)->as_string;}Just wondering if there is anyway i can make this code work faster or more efficient, even better if you could help me to click on links that google cant find such as passworded forums(clearing and renewing the cookies would be a bonus). Thanks
f00sh












