in reply to multiple inputs on form with same name
you are asigning $query->param($field) to an scalar, but it is an array, so you are obtaining the last element of the array.$FORM{$field} = $query->param($field);
@foo = split("\0",$params->{'foo'});
@array = $query->param($field);
|
|---|