Thanks for the reply, Peter.
What I have done now is this:
test.cgi:
our %FORM;
$FORM{'region'} = 2;
$FORM{'mode'} = "SSI";
do ("/path/to/otherscript.cgi);#
print qq|And this is some other code|;
otherscript.cgi:
if ($FORM{'region'} == 2) { #do stuff;}
.....
if ($FORM{'mode'} eq "SSI") { # do some other stuff;}
.... This basically works.
What makes me a bit uneasy is that %FORM is not expressly declared or
imported in otherscript.cgi.
Could this become a problem?
Birgit Kellner
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]