how to store value of a text box in a perl variable
I am a beginner in Perl. Can anyone show me a few lines of sample code on how to store the value of a text box in a perl variable? I want to store the value the user entered in a form in a Perl variable after he clicks on the submit button (assuming my page submits to a perl script).
Any help will be appreciated! Thanks!
Re: how to store value of a text box in a perl variable
I am beginner in Perl..
I need to add a view button which takes the input from the text box which the user enters for eg:
<input type=text name=person value="">
print "$person";
but the value is blank even if I enter something in the text box.
Can someone please guide me regarding this..