I want to create a multi file uploder using HTML5 and PHP5. I don't want to use any flash player for support. Flash uploader will not support in iphone. I created the form like this
<form name="uploader" method="post" action="" enctype="multipart/form-data">
<input type="file" name="images[]" id="images" multiple="multiple" />
<input type="submit" name="button" value="Submit" />
</form>
It is working with chrome, mozilla, opera, safari... but IE not supporting this.
I tried with IE8 and IE9 both are not supporting. How can I fix this? Anybody who knows the solution please kindly help me.