Kanishka.black0 has asked for the wisdom of the Perl Monks concerning the following question:
$table should be populate with a table .. but that;s not happening ...use strict; use warnings; use YAML; use HTML::Tree; use LWP::UserAgent; my $ua = LWP::UserAgent->new; my $response = $ua->get('http://www.raaga.com/channels/hindi/moviedetail.asp?mid=H002 +927'); my $content1 = $response->content; my $tree = HTML::Tree->new(); $tree->parse($content1); my $article = $tree->look_down(_tag=>'form',id=>'raaga'); my $table = $article->look_down(_tag=>'table',class=>'dataTbl',width=> +"450"); print Dump $table;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: HTML::Tree look_down is not working
by wfsp (Abbot) on Jan 01, 2011 at 15:31 UTC | |
by Kanishka.black0 (Scribe) on Jan 01, 2011 at 20:03 UTC | |
|
Re: HTML::Tree look_down is not working
by afoken (Chancellor) on Jan 01, 2011 at 13:00 UTC | |
by Kanishka.black0 (Scribe) on Jan 01, 2011 at 13:22 UTC |