in reply to Re: using modules already 'used'
in thread using modules already 'used'

Funny, I can't find the scripts now where I was having this problem, but here's the rough issue:
package X; use CGI; $q = CGI->new; $q->param('test','test value'); print "In Package X: ", $q->param('test'), "\n"; package Y; use CGI; $r = CGI->new; print "In Package Y: ", $r->param('test'), "\n";
Wheras, I want $r to contain the correct value of test. Now do you see what I mean? So I just want one CGI object created over the several namespaces.

cLive ;-)

--
seek(JOB,$$LA,0);