Stricture and warnings (was Re: problems parsing web form information into a perl script)

2004-03-09 Thread zsdc
Wiggins d'Anconia wrote: use strict; # always use warnings;# usually Why not always? I would make it: use strict; # always use warnings; # always and also use the taint mode: #!/usr/bin/perl -T in CGI scripts (or any other scripts invoked by someone else than the system user they run

Re: Stricture and warnings (was Re: problems parsing web form information into a perl script)

2004-03-09 Thread Wiggins d Anconia
Wiggins d'Anconia wrote: use strict; # always use warnings;# usually Why not always? I would make it: use strict; # always use warnings; # always I won't argue with you over them. I always do both... some people don't like that always on the warnings, so I use the

Re: Stricture and warnings (was Re: problems parsing web form information into a perl script)

2004-03-09 Thread zsdc
Wiggins d Anconia wrote: Wiggins d'Anconia wrote: use strict; # always use warnings;# usually Why not always? I would make it: use strict; # always use warnings; # always I won't argue with you over them. I always do both... some people don't like that always on the warnings, so I use