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 unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




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), I need to parse line by line.

you can find out by

print ref $res-content;



-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]