in reply to Re: mod_perl advice required
in thread mod_perl advice required

Hi ,

The use strict pragma is important as your program runs through mod-perl as mod-perl behaves negatively if you have variables that are global without scope and as you know use strict will surely not entertain global variables

Replies are listed 'Best First'.
Re: Re: Re: mod_perl advice required
by premchai21 (Curate) on Feb 25, 2003 at 20:22 UTC

    Not quite correct. It will not entertain undeclared global variables. (Or undeclared lexical variables, for that matter, but AFAIK a variable has to be declared to be lexically scoped anyway.)