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>
Community
  • 1
  • 1
Naveenbos
  • 2,532
  • 3
  • 34
  • 60
  • @naveen: You are invited to do some little research before you ask a question your own. – hakre Aug 08 '12 at 11:07

1 Answers1

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.

Community
  • 1
  • 1
Jonas G. Drange
  • 8,749
  • 2
  • 27
  • 38