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;
my $table = $tree->look_down(_tag=>'table',class=>'dataTbl',width=>"450");
but if i try this way its getting the table .
$tree -- > HTML CODE
$article --> $tree ->look down a form with id
$table --> $article -> narrowing the tree with a table which has class
$table is not populate
but
$tree -- > HTML CODE
$table -->$tree-> narrowing the tree with a table which has class
Can any one tell me why isn't this working ???
|
---|
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 |
Back to
Seekers of Perl Wisdom