in reply to Multiple Data Selections per Field in CGI

If your multiple selection field is called "field", then do this:
use CGI qw(:standard); @all_selections = param ('field');
@all_selections will then magically have all the values selected in your multiple selection field. It's just that simple.

Gary Blackburn
Trained Killer