Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl Monk, Perl Meditation
 
PerlMonks  

muba's scratchpad

by muba (Priest)
on Jun 01, 2004 at 18:05 UTC ( [id://358330]=scratchpad: print w/replies, xml ) Need Help??

# Line 20-24 my $year = $cgi->param('year') ? encode_entities($cgi->param('year +'), '<>"') : ''; my $media = $cgi->param('media') ? encode_entities($cgi->param('medi +a'), '<>"') : ''; my $genre = $cgi->param('genre') ? encode_entities($cgi->param('genr +e'), '<>"') : ''; my $source = $cgi->param('source') ? encode_entities($cgi->param('sour +ce'), '<>"') : ''; my $title = $cgi->param('title') ? encode_entities($cgi->param('titl +e'), '<>"') : '';
# How I'da dunnit: my %param = map { $cgi->param($_) ? ($_ => encode_entities($cgi->param($_), '')) : () } qw(year media genre source title);
# Line 33-39: if ( $year || $media || $genre || $source || $title ) { my @selections; push @selections, qq($title) if $title; push @selections, qq($year) if $year; push @selections, qq($media) if $media; push @selections, qq($genre) if $genre; push @selections, qq($source) if $source; ...
# How I'da dunnit: if (keys %param) { my @selections = values %param; ...

As for verything from line 82 onward, i.e. the whole page(...) thing, I'd look into a templating system. Template Toolkit follows the Perl philosophy (easy things easy, hard things possible) pretty neatly in my opinion.

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 studying the Monastery: (3)
As of 2024-04-20 05:21 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found