5

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>
1
  • @naveen: You are invited to do some little research before you ask a question your own. Commented Aug 8, 2012 at 11:07

1 Answer 1

1

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.

Sign up to request clarification or add additional context in comments.

4 Comments

Is there any possible way to solve this problem?
Sadly, you cannot solve it so that <=IE8 recognizes multiple, but you can take a look at this answer: stackoverflow.com/questions/207298/…
@JonasG.Drange Why not close as dupe when the answer is already somewhere else?
I am trying to earn the rep, but my day job is in the way. I can flag it if that would help you close it.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.