!!!reevaluating part of the module

2001-07-10 Thread raptor
hi, What I want is access from module to executed-at-the-moment script namespace i.e. the module Utils.pm : $abc.asp::buffer .= 'hello.'; the script xxx.asp : use Utils; use vars qw($buffer); print $buffer == How can I do this. Currently I'm doing something like this : the

Re: !!!reevaluating part of the module

2001-07-10 Thread Joshua Chamas
raptor wrote: hi, What I want is access from module to executed-at-the-moment script namespace i.e. the module Utils.pm : $abc.asp::buffer .= 'hello.'; PS. It seems to work only if into the script I'm clearing $Utils::buffer at the begining of the script, but this is exactly