http://www.perlmonks.org?node_id=1079320


in reply to running a Perl script with options via HTML

<form action="http://XXX/XXX/XXX/add-hosttest.pl -s server -u username -p password -v view -n name -a ip address" method="post">

This looks very wrong. CGIs aren't invoked that way. Parameters passed to the webserver inside the URL (the part after the first ?) are passed to the CGI via environment variables, Parameters passed to the webserver in POST requests are passed to the CGI via STDIN. CGIs do not take command line parameters.

Read http://en.wikipedia.org/wiki/Common_Gateway_Interface, then consider using CGI or a similar module. Don't try do invent your own CGI protocol handler, you will likely create an incomplete and insecure version.

Alexander

--
Today I will gladly share my knowledge and experience, for there are no sweeter words than "I told you so". ;-)