I'm try to upload the file for a list of input like that jsfiddle how can add the uploadify jQuery to this control and upload the image codeigniter. and i'm try to the below code refered in this link

jQuery(".file_upload").each(function() {
   jQuery(this).uploadify({
      height        : 30,
      swf           : '/uploadify/uploadify.swf',
      uploader      : '/script/uploadify/uploadify.php',
      width         : 120
   });
});

but it's not working to me. Any help would be great.

有帮助吗?

解决方案

Your HTML should be like,

<!-- Use file type instead of text -->
<input type="file" name="test1[]" class="file_upload"/>
<input type="file" name="test1[]" class="file_upload"/>
<input type="file" name="test1[]" class="file_upload"/>

And use your code on submit of form

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top