in reply to Re: HTTP 200 Status
in thread HTTP 200 Status

I dont exactly know what you mean. The script is a subroutine in a larger CGI script all the CGI declarations are made at the start. The script actually does what i want it to do other than send a HTTP 200 status back to the server once completed.

Replies are listed 'Best First'.
Re^3: HTTP 200 Status
by converter (Priest) on Sep 02, 2008 at 16:14 UTC

    What the poster means is that you should be using the CGI.pm module instead of trying to roll your own query parsing. There are numerous, well-documented reasons for this (see use CGI or die;, for example).

    As for your question, you really haven't provided enough information for anyone to give you an intelligent answer. The reason for your program's failure can't be deduced from the snippet of code you've listed.