re: [MacPerl-WebCGI] A v B = ?

[email protected] Fri, 9 Mar 2001 03:26:01 +0900
Newsgroups perl.macperl.webcgi
Message-ID <v04011700b6cd7ed1279f@[211.19.95.165]>
[email protected] wrote
>why does A work and B does not?

>>try running your scripts with the warning flags on and you'll find out why

>Where do you turn the "warning flags" on?

put this stuff at the top of your script

#! perl -w

use strict;
use diagnostics-verbose;


hth

Robin