act
: showing which button is clicked,
email
: the email input field, and
password
: the password input field.
act=Submit&email=userid@cs.und.edu&password=CSci513In Perl, the
$query->param
variable collects input values such as
print $query->param('act');
// “Submit” print $query->param('email');
// “userid@cs.und.edu” print $query->param('password');
// “CSci513”
“If you’re reading this... Congratulations, you're alive. If that’s not something to smile about, then I don’t know what is.” ― Chad Sugg, Monsters Under Your Head |