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>
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.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With