Beefy Boxes and Bandwidth Generously Provided by pair Networks
Don't ask to ask, just ask
 
PerlMonks  

Re: Confusing Syntax

by ctilmes (Vicar)
on Aug 12, 2003 at 11:03 UTC ( [id://283140]=note: print w/replies, xml ) Need Help??


in reply to Confusing Syntax

You also forgot use strict; and use warnings; at the top.

BTW, you could simplify some of those long similar lists by looping over 1..14:

my %pics = (pic0 => $q->param("photo")); $pics{"pic$_"} = $q->param("photo$_") for 1..14; my @pic_filehandles = map { $q->upload("photo$_") } '',1..14;

(It would get even simpler if you used "photo0" for your first name.)

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others goofing around in the Monastery: (6)
As of 2024-04-18 19:13 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found