Re: libwww example / tutorial

2002-11-24 Thread zentara
On Sat, 23 Nov 2002 05:07:15 -0800 (PST), [EMAIL PROTECTED] (Admin-Stress) wrote: >Hi, > >Anyone know any URL about libwww example / tutorial? >I cant find decent source. I just want to learn how to GET an ouput from a website >and parse the Read perldoc lwpcook. -- To unsu

Re: libwww example / tutorial

2002-11-23 Thread fliptop
On Sat, 23 Nov 2002 at 05:07, Admin-Stress opined: A: if ($res->is_success) { A: print $res->content; A: } else { A: print "Error: " . $res->status_line . "\n"; A: } A: A:What is the variable type of $res->content ? is it Array? Because it A:just dumped the output (multiple lines),

libwww example / tutorial

2002-11-23 Thread Admin-Stress
Hi, Anyone know any URL about libwww example / tutorial? I cant find decent source. I just want to learn how to GET an ouput from a website and parse the output. from one of example, I can print the output like this : if ($res->is_success) { print $res->content;