Hi monks. Is there a way to tell Perl to initialize all the variables in my script? I have run into a problem with a client's server installation of ActivePerl. It seems to keep variable values from one call of the Perl script to the next one. (the webpage produced by Perl creates a form, which calls back on the script). This script is run on many other servers without this problem.
I'm looking for a single command or loop to put at the beginning of the script that will take all the variables in that workspace & initialize them all in one fell swoop. This would be way easier than initializing them all one at a time. The script doesn't have an initialization for each variable, they are just implicitly created as they are used.