... #### #!/usr/bin/perl -w use strict; use WWW::Mechanize; my $url = 'http://www.gulfgreyhound.com/officialracingresults.asp'; my $robot = new WWW::Mechanize; $robot->get($url); $robot->form_number('1'); $robot->set_fields('subfolder' => 'dec03'); $robot->click(); # Get the reply to my question my $html = $robot->content(); print "$html";