Testing A Form Script Using a Local Install of Perl

I have a form that the fields are parsed and emailed via a perl script. I don’t have access to the remote server all the time, so I can’t test changes to my perl script easily. I have perl installed locally on my win7 PC and would like to know how to use it to test my form script using it. Thanks!

You can use the command line interface of Windows and a command

perl -d script.pl “field1=abc&field2=def”

where script.pl is the name of your perl script and “field1=abc&field2=def” are the field names and their values.

The -d means start the debugger