in reply to Re: Re: Sharing Global variables between scripts
in thread Sharing Global variables between scripts

Thanks to a short CB exchange I now see what you have in mind. You're using a system call to execute TAZ.pl from within Dispatcher.cgi.pl.

So yes, the variables still exist, but unfortunately you can't access them from within

TAZ.pl</ocde> since both scripts are running in their own Perl interpr +eter and don't share anything.</p> <p>The best thing to do I guess is to transform <code>TAZ.pl
into a function and call that from within Dispatcher.cgi.pl by directly including it in that file. The advantage is that you can make $project et al. parameters of that function which is much cleaner.

You can also put that function into a module and load it with use.

Hope this helps, -gjb-