in reply to Sharing Global variables between scripts
In Dispatcher.cgi.pl your package statement preceeds the use statements so the functions wind up in package DispatchParser.
In TAZ.pl you reversed that order so the functions wound up in package main, and then you're looking for them in package DispatchParser.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Sharing Global variables between scripts
by TASdvlper (Monk) on Apr 16, 2004 at 22:28 UTC | |
by tilly (Archbishop) on Apr 16, 2004 at 23:07 UTC |