Hi,
I have the following dropdown.
<select name="branchmenu" multiple="true">
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
</select>
I have the follwoing code in perl
$val= $cgi->{'form'}{'branchmenu'};
when i am selecting single value it is working perfect.
Iwant to select multiple values If i select multiple values in that time above perl line it is displaying ARRAY(09XXCC) some thing like this.
any body help me to fix this error.
Thanx in advance
I have the following dropdown.
<select name="branchmenu" multiple="true">
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
</select>
I have the follwoing code in perl
$val= $cgi->{'form'}{'branchmenu'};
when i am selecting single value it is working perfect.
Iwant to select multiple values If i select multiple values in that time above perl line it is displaying ARRAY(09XXCC) some thing like this.
any body help me to fix this error.
Thanx in advance