How do I get the form elements from all my form fields and store them into an array using the cgi module?
@elements = $query->param();
this is the way I know how, and this only outputs the name of all the fields instead of what the user typed in them. What else is needed to make this possible....
@elements = $query->param();
this is the way I know how, and this only outputs the name of all the fields instead of what the user typed in them. What else is needed to make this possible....