From the docs,
this function also takes a second optional array or hash reference parameter.
Not having played it myself, I can only conjecture that this should work:
my @form_vals=(multival=>'val1', multival =>'val2', multival =>'val3
+');
# or , alternatively,
my @form_vals=(single=>'Single Value', multival=>[ 'a', 'list', '
+of', 'values']);
# Pass a ref to @form_vals , when you POST.
"As you get older three things happen. The first is your memory goes, and I can't remember the other two... "
- Sir Norman Wisdom
|