On Mon, 21 May 2001 04:05:05 -0400 Stephen Howard wrote:
SH> load. However I am interested in applying my findings to larger
SH> projects.
hmm... have you got those strange results using mod_perl Apache::Registry? may
be this is just usual closure trap? try writing all your script code in
e.g. sub main { } and then calling it like this:
#!/usr/bin/perl
use strict;
use ... # all necessary uses
&main;
sub main {
...# your script code
}
--
// pavel kurnosoff
