in reply to cgi: Grabbing Multiple input values
FETCHING THE VALUE OR VALUES OF A SINGLE NAMED PARAMETER: @values = $query->param('foo'); -or- $value = $query->param('foo'); Pass the param() method a single argument to fetch the value of the na +med parameter. If the parameter is multivalued (e.g. from multiple selecti +ons in a scrolling list), you can ask to receive an array. Otherwise the meth +od will return a single value.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: cgi: Grabbing Multiple input values
by Anonymous Monk on Jan 17, 2017 at 14:31 UTC |