in reply to needing help with a cgi form processor

Hi darkreign and welcome to the monastery :)

Firstly, that link you gave is broken. If you have some existing code, you can post it here. Be sure to enclose it in <code> tags.

Also, ensure that you are using the CGI module (if you are not already). This will save you having to re-invent many wheels when it comes to CGI web scripting.

For troubleshooting CGI, you may find CGI::Carp useful - add use CGI::Carp qw(fatalsToBrowser); to the top of your script, and this will send any fatal error messages to your browser.

Hope this helps,
Darren :)