All, I have a simple question.
What is the standard procedure for retrieving form values via POST method in a web form? Perl can be extremely awkward for web programming, I'd normally use something else, but in this case I need to use Perl for the CPAN module.
Anyway, back to the point, If I have a basic html form, how do I get the values out in verify_login?
<form name="login" action="$cgidir?action=verify_login" method="POST">
<input type="text" name="user">
<input type="password" name="pass">
<input type="submit" name="login" value="Login">
</form>