Beefy Boxes and Bandwidth Generously Provided by pair Networks
We don't bite newbies here... much
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
Looks like you are trying to get %formdata from a form on a webpage, yes? You might want to first, use CGI; and then try building an html form to get your users input, then your form values will be available in $query->param('value'). Example below:
#!perl -wT use strict; use CGI; # Basic CGI.pm form usage. my $query = new CGI; print $query->header; print $query->start_html("CGI.pm Basic form."); print $query->start_form; print "<b>To:</b>"; print $query->textfield('to'); print "<b>From:</b>"; print $query->textfield('from'); print "<b>Message:</b>"; print $query->textfield('body'); print "<p>",$query->reset; print $query->submit('Action','Stumbit'); print $query->endform; print "<hr>"; print "YOUR potential business is VERY IMPORTANT .... etc"; print $query->end_html; # Later on parse your $to $from etc from $query->param('nameofvalues') + instead of $formdata{'nameofvalues'} # and do your mailing, prefferably with a module from CPAN
There is much, much more that needs to be done to make sure that CGI script is secure and functional. You may want to consider checking out Ovid's CGI Course located here: Ovids CGI Course, and some of merlyn's colums located here: WT Colums by Randal.

--
A conclusion is simply the place where someone got tired of thinking.

UPDATE:Just a note, that code is un-tested.


In reply to Re: Hand-rolled CGI mailto by defyance
in thread Hand-rolled CGI mailto by prowebdesigner

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others surveying the Monastery: (4)
As of 2024-04-25 12:37 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found