Slight problem in your post. If you wish to pass parameters in the URL, your method should be
get, not
post. You can still append data to the URL and it will be processed with
get, but your post does not make that clear. Here's the correct form tag:
<form action="/perl/scriptname" method="get">
Cheers,
Ovid