greeting monks..I'm new in programming also new in perl..i'm trying to fetch the page using WWW::Mechanize with multiple page by using for loop, but i cant stored/gathered the link..how this can be done??

for $cnt (1..3){ my $url = "http://www.foo.com/p/$cnt"; $mech = WWW::Mechanize->new(); $mech->get($url) or die "no such url"; @link{$cnt} = $mech->find_all_links(tag => "a", class => " +foo") or die "can't find link"; @link = @link{$cnt}; $linksize = scalar @link; $hlink = "got $linksize :\n"; print $hlink; $linkurl .= $_->url . "\n" for @link; print $linkurl; }

thank in advance

**sorry if my query is not clear..i'm newbies in perlmonks...if there more info needed pls let me know..


In reply to how to store link array in for loop with WWW::Mechanize by haiihh

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.