in reply to Re^5: Proper use of HTML::Extract for extracting
in thread Proper use of HTML::Form for exctracting
It's no longer a core module since version v5.22. If you are just parsing form parameters take a look at CGI::Simple.
poj#!/usr/bin/perl use strict; use warnings; use CGI::Simple; my $q = CGI::Simple->new; print "Content-type: text/html\n\n"; print "<html><body>\n"; print $q->param('textfield'); print"</html></body>";
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^7: Proper use of HTML::Extract for extracting
by bachoA4o (Sexton) on Aug 27, 2018 at 18:44 UTC |