in reply to Argument values

first, the obligatory :
# perl -wT # ^ whatever executable's appropriate! use strict;

Also, this chunk probably doesn't do what you want :

if (param) { $user_name = em(param('name')); &file_creation($user_name); }
It checks to see if any parameter exists, then assumes that the name param will. that's bad.
Assuming a user name of "Jim", the next line assigns <em>Jim</em> to $user_name, and that's probably not what you want.

Replies are listed 'Best First'.
Re: Re: Argument values (boo)
by John M. Dlugosz (Monsignor) on Jul 24, 2001 at 01:16 UTC
    I've gone to use warnings; so don't worry about the -w flag anymore.