Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to enable multiple image file selection in IE in php html? [duplicate]

Possible Duplicate:
HTML5 input type file's multiple attribute not working in IE?

i can able to upload multiple images in firefox, but in IE i can able to upload only one image

<form id="imageUploadForm" action="<?php echo base_url();?>/index.php/product/UploadImages/<?php echo $uploadFolder;?>" method="POST" enctype="multipart/form-data" > <input name="userfile[]" id="userfile" type="file" multiple /> <input name="" id="id_uploadbtn" type="submit" class="button" value="Upload" /> </form>
like image 262
Naveenbos Avatar asked Nov 13 '22 00:11

Naveenbos


1 Answers

This has been answered here: https://stackoverflow.com/a/5987954/538866

Basically, IE8 and down does not support HTML5. This means the multiple part of your form is not recognized by Internet Explorer.

like image 125
Jonas G. Drange Avatar answered Jun 09 '23 17:06

Jonas G. Drange