in reply to Processing a multiple="multiple" <select>
use CGI; my $cgi = CGI->new(); my @values = $cgi->param('Blah[]'); [download]
The problem you have is that you are assigning multiple values to a single scalar ($POST{'Blah[]'}).