Beefy Boxes and Bandwidth Generously Provided by pair Networks
"be consistent"
 
PerlMonks  

Re: cgi environment

by clwolfe (Scribe)
on Dec 05, 2006 at 02:11 UTC ( [id://587775]=note: print w/replies, xml ) Need Help??


in reply to cgi environment

As the previous poster suggested, running with 'use strict' and 'use warnings' will make your life much, much easier. Perl without those saftery features can be very frustrating and mysterious to the newbie. With those features turned on, Perl will check for mispelled variables, funny code constructs, and all sorts of other things that you probably didn't mean to do.

That said one other problem is that you're calling exec within a for loop. As the handy documentation says (See perldoc -f exec), exec calls the command specified and never returns. Your process is replaced with the new process. So your for loop would execute at most once. Instead, you should probably use system or else fork and then exec. That second one is probably a bad idea, though.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others romping around the Monastery: (5)
As of 2024-04-19 05:21 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found