dda has asked for the wisdom of the Perl Monks concerning the following question:
Here is the code which works under 5.6.0 and 5.8.0, but fails to find the form under 5.8.1:
Do you have an idea why does it happen? The version of HTML::Form is 0.03 on all servers which I tried...#!/usr/bin/perl -w use strict; use HTML::Form; my $html = "<form></form>"; if (my $form = HTML::Form->parse($html, "localhost")) { print "Found!\n"; } else { print "Error!\n" };
--dda
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: HTML::Form->parse() fails under 5.8.1
by PodMaster (Abbot) on Mar 13, 2004 at 23:26 UTC | |
Re: HTML::Form->parse() fails under 5.8.1
by dda (Friar) on Mar 14, 2004 at 09:12 UTC | |
by Corion (Patriarch) on Mar 14, 2004 at 09:23 UTC | |
by bart (Canon) on Mar 14, 2004 at 22:27 UTC |