in reply to Re: Re: Die function misfunctions
in thread Die function misfunctions
I also suggest turning on warnings and taint mode via
and enabling strict syntax checking like so#!/usr/bin/perl -wT
Taint mode is essential for security reasons, whereas the other things are just plain good for your development as a perl programmer. For more info on these, there is a wealth of information on this site (or just keep asking questions). You should also read 'perldoc perlsec' since you are writing CGI code.use strict;
|
|---|