Perl & LWP by Sean M. Burke The unconfirmed error reports are from readers. They have not yet been approved or disproved by the author or editor and represent solely the opinion of the reader. Here's a key to the markup: [page-number]: serious technical mistake {page-number}: minor technical mistake : important language/formatting problem (page-number): language change or minor formatting problem ?page-number?: reader question or request for clarification This page was updated April 8, 2008. UNCONFIRMED errors and comments from readers: (33) l.18; my $response = $browser->request(@_); -> my $response = $browser->get(@_); (50) l.25; There's too much space near "becomes" and "makes". (54) l.2; In the line 2, missing "]". reads: @params = $url->query_form([key, value, ...); should be: @params = $url->query_form([key, value, ...]); (55) ll.18-19; In the line 18, Goal: http://phee.phye.phoe.fm/thingamajig/zing.html In the line 19, To get from the base to the goal, the shortest relative URL is simply zing.xml. Which is correct, zing."html" or zing."xml"? (62) Middle of page, in formpairs.pl; "\" is not necessary in the following expression: s/=/\" => \"/; to s/=/" => "/; (65) line 17; ivalue="Pretty please!" to value="Pretty please!" (102) line 13; $attribute_hash to $attribute_hashref (103) the third line from the bottom; decode_entities($token->[1]) if $token->[2]; to decode_entities($token->[1]) unless $token->[2]; (115) line 18; Unless $tag->[0] to Unless $tag_reference->[0] (116) line 13; When $tag->[0] to When $tag_reference->[0]