drake50 has asked for the wisdom of the Perl Monks concerning the following question:
#!/usr/bin/perl -w # this is untested use strict; use WWW::Mechanize; my $url = 'http://www.bluffsdogs.com/recent_results.asp'; my $robot = new WWW::Mechanize; $robot->get($url); $robot->form_number('0'); $robot->set_fields('radiobutton' => 'true'); $robot->click(); # Get the reply to my question my $html = $robot->content(); print "$html";
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: form posting question
by Corion (Patriarch) on May 19, 2004 at 20:40 UTC | |
by drake50 (Pilgrim) on May 19, 2004 at 21:01 UTC | |
by Corion (Patriarch) on May 19, 2004 at 21:14 UTC | |
by drake50 (Pilgrim) on May 20, 2004 at 03:13 UTC | |
by Corion (Patriarch) on May 20, 2004 at 07:10 UTC | |
by drake50 (Pilgrim) on May 19, 2004 at 23:54 UTC | |
by bobn (Chaplain) on May 20, 2004 at 01:29 UTC |