Beefy Boxes and Bandwidth Generously Provided by pair Networks
Pathologically Eclectic Rubbish Lister
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
It looks like you are attempting to validate information passed from form input fields in a CGI script. For this, I would suggest that you might want to look at either HTML::FormValidator or Data::FormValidator - These modules allow for validation of not only the presence of form input fields in the passed CGI parameters, but also the adherence of these fields to allowed formats. For example:

use CGI; use Data::FormValidator; my $cgi = CGI->new; my $validator = Data::FormValidator->new({ 'form_input' => { 'required' => [ qw/ first second clan nick pass repass e +mail reemail street postal city country / ], 'constraints' => { 'email' => 'email', 'pass' => '/^[\w\d\-\ ]{1,}$/', 'reemail' => 'email', 'repass' => '/^[\w\d\-\ ]{1,}$/' }, 'filters' => [ qw/ trim / ] } }); my %params = map { $_ => $cgi->param($_) } $cgi->param(); my ( $valid, $missing, $invalid, $unknown ) = $validator->validate( \% +params, 'form_input' );

This little snippet of code performs a number of tasks:

  • Creates a new CGI object, $cgi.

  • Creates a new Data::FormValidator object with a input validation profile called 'form_input' - This input validation profile defines the required fields and sets regular expression constraints on some of them (email, pass, reemail and repass) which need to be met for the field to be considered as 'valid'.

  • Creates a hash of CGI parameters, indexed by the parameter field name, and,

  • Validates the CGI form input fields with the Data::FormValidator validator against the form_input validation profile - This returns four array references containing those fields which are valid, invalid, missing and unknown respectively.

 


In reply to Re: Hmm I get this error from $q's by rob_au
in thread Hmm I get this error from $q's by andrew

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 chilling in the Monastery: (4)
As of 2024-04-24 22:03 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found