in reply to Re^3: Unusual problem with CGI based quiz
in thread Unusual problem with CGI based quiz

Yes. If you need a global variable visible to your whole program but reset on every execution, just declare a global variable and reset it on every execution:
our $variable; $variable = undef;