Beefy Boxes and Bandwidth Generously Provided by pair Networks
more useful options
 
PerlMonks  

Writing It Myself, DWIM, and Expectations

by jest (Pilgrim)
on Sep 13, 2004 at 04:19 UTC ( [id://390494]=perlmeditation: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    foreach my $field (@fields) {
      my $value = param($field);
    ...
      next if $value eq "";
      # construct SQL or otherwise work with $value
    }
    
  2. or download this
    my %good_params =
        map { $_ => $params{$_} }
        grep { $params{$_} ne ""}
        keys %params;
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: perlmeditation [id://390494]
Approved by FoxtrotUniform
Front-paged by Paulster2
help
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-19 04:43 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found