Reputation: 4682
The code am using to select multiple file(s) at a time and to upload them to server is :-
<html>
<body>
<form action="upload.php" method="post" enctype="multipart/form-data" name="myForm">
<label for="myfile" style="cursor:pointer;">Click To Upload Photo(s)</label>:<input type="file" id="myfile" name="upload" multiple="multiple" />
<br />
<input type="submit" />
</form>
</body>
</html>
But it doesn't work in IE(version<9.0). Does Any one know how to select multiple files at a time in IE ? I have also tried BlueImp & valums File uploader for the same.
Upvotes: 0
Views: 2570