in reply to Re^3: Range File Open
in thread Range File Open

This node was taken out by the NodeReaper on Mar 05, 2008 at 10:46 UTC

Replies are listed 'Best First'.
Re^5: Range File Open
by stiller (Friar) on Mar 04, 2008 at 18:04 UTC
    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.