in reply to mod_perl and multiuser global variables

Uncomment "use strict", add "use warnings", and change those "our" variables to "my" variables. The values of $userid and $status will persist if you use our.
  • Comment on Re: mod_perl and multiuser global variables