RE: Lou's Code - need a little more help on mod questions.

2005-11-28 Thread Charles K. Clarkson
Lou Hernsen wrote: : Bareword "stats" not allowed while "strict subs" in use at : C:\WWW\MYSTIC~1\CGI-BIN\TEST-N~1\MA.CGI line 4359. Execution of : C:\WWW\MYSTIC~1\CGI-BIN\TEST-N~1\MA.CGI aborted due to compilation : errors What's on the lines near line 4359? HTH,

Lou's Code - need a little more help on mod questions.

2005-11-28 Thread Lou Hernsen
OK... I have put the mod in the same dir as the main prog. chmod 644 on mod chmod 755 on main however there is an error. the mod does nothing more that produce HTML and a few calculations. the mod works fine with out error in my editor. however the main program does not like how I call stats.pm i

Re: our..... Lou's code

2005-11-28 Thread Bob Showalter
Lou Hernsen wrote: - Original Message - From: "Bob Showalter" <[EMAIL PROTECTED]> To: "Lou Hernsen" <[EMAIL PROTECTED]> Cc: Sent: Sunday, November 27, 2005 12:36 PM Subject: Re: our.. Lou Hernsen wrote: ok after reading about "our" fact: I use all global vars in the main program.

RE: our..... Lou's code ( was: Need help with making a Modules )

2005-11-28 Thread Charles K. Clarkson
Lou Hernsen <> wrote: : Bob Showalter <> wrote: : : : A variable declared with "my" is only accessible within the : : enclosing file, block, or eval. : : File is the entire program. Yes. : like a global var? No. Globals are in the symbol table and can be accessed from *outside* th

Re: our..... Lou's code

2005-11-28 Thread Lou Hernsen
- Original Message - From: "Bob Showalter" <[EMAIL PROTECTED]> To: "Lou Hernsen" <[EMAIL PROTECTED]> Cc: Sent: Sunday, November 27, 2005 12:36 PM Subject: Re: our.. > Lou Hernsen wrote: > > ok after reading about "our" > > > > fact: > > I use all global vars in the main program. > > c