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
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),
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;