Ok, thanks. It is simply not possible to do a multi file select in the select file dialog.
Straight from w3schools.com:
Create an Upload-File Form
To allow users to upload files from a form can be very useful.
Look at the following HTML form for uploading files:
<html>
<body>
<form action=”upload_file.php” method=”post”
enctype=”multipart/form-data”>
<label for=”file”>Filename:</label>
<input type=”file” name=”file” id=”file” />
<input type=”submit” name=”submit” value=”Submit” />
</form>
</body>
</html>
Notice the following about the HTML form above:
* The enctype attribute of the <form> tag specifies which content-type to use when submitting the form. “multipart/form-data” is used when a form requires binary data, like the contents of a file, to be uploaded
* The type=”file” attribute of the <input> tag specifies that the input should be processed as a file. For example, when viewed in a browser, there will be a browse-button next to the input field
The browse-button opens a file select dialog that does NOT support multi select.
If you know about a php script that supports multifile uploads, i will be glad to know.
I could make an upload program to upload zip-files to the user’s personal depot directory from where they could be imported, but i guess your users will also not be able to pack muliple .jpg’s into a .zip?