in reply to Re^5: Proper use of HTML::Extract for extracting
in thread Proper use of HTML::Form for exctracting

i thought it's not being used anymore

It's no longer a core module since version v5.22. If you are just parsing form parameters take a look at CGI::Simple.

#!/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>";
poj

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
    Thank you ! That solved my problem , I was googling for 2 days and couldn't find a solution . Great community forum :)