Beefy Boxes and Bandwidth Generously Provided by pair Networks
laziness, impatience, and hubris
 
PerlMonks  

Re^5: Proper use of HTML::Extract for extracting

by bachoA4o (Sexton)
on Aug 27, 2018 at 15:57 UTC ( [id://1221209]=note: print w/replies, xml ) Need Help??


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

Yes ,that's what I want to do. I didn't use CGI.pm because i thought it's not being used anymore (correct me if i'm wrong i'm new in perl)
  • Comment on Re^5: Proper use of HTML::Extract for extracting

Replies are listed 'Best First'.
Re^6: Proper use of HTML::Extract for extracting
by poj (Abbot) on Aug 27, 2018 at 17:04 UTC
    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
      Thank you ! That solved my problem , I was googling for 2 days and couldn't find a solution . Great community forum :)

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1221209]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others imbibing at the Monastery: (4)
As of 2024-04-23 18:11 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found