Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
#!C:/Perl/bin/perl -w use strict; $| = 1; use CGI::Carp "fatalsToBrowser"; use CGI ":all"; ... my $res = $ua->get( $url_home ); ParseHomePage( \$res->{_content} ); sub ParseHomePage { my $p = HTML::TokeParser->new($_[0]); ... }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: "Called to early to check prototype"
by Aristotle (Chancellor) on Aug 20, 2004 at 20:50 UTC | |
by superfrink (Curate) on Aug 21, 2004 at 04:51 UTC |