One of these is a little session thing to time sessions out and store paramters in a DB.
When the module loads it does a 'new CGI::Simple' and checks for a session cookie to do it's stuff.
The problem I have is that in my main program I have another 'new CGI::Simple' for processing my form data.
What's happening is, the CGI Simple in the session module is stealing the POST data, so in my main program I can't get my form data. If I use GET then it's fine, and the content type and length are preserved.
Has anyone used CGI like this before?