I want to create a multilingual uploder using HTML5 and PHP5. I do not want to use a flash player for support. Flash downloader does not support iphone. I created a 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 works with chrome, mozilla, opera, safari ... but IE does not support this.
I tried with IE8 and IE9 which do not support. How can i fix this? Anyone who knows the solution, kindly help me.
source share