Ah, you want multiple choice drop down list? Well, that is not standard html, but you can probably find some javascript library that provides that. The point is, when the html form contains several values that all has the same name, then your script can pick up those as an array or list, e.g. my @selected = param('selected_files'); or whatever the name of your html form selection element is. | [reply] [d/l] |