Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am using the the jQuery plugin https://github.com/blueimp/jQuery-File-Upload to up load files. I just wanna use the upload button to show the selected files and only upload the files when the form is submitted. following is my code :

    <form id="myform" method="post" enctype="multipart/form-data">
                <span class="btn btn-success btn-mini fileinput-button">
                    <i class="icon-plus icon-white"></i>
                    <span>Add files</span>
                    <input  id="fileupload" type="file" name="files[]" multiple>
                    <button type="submit" id="start_uploads">Start uploads</button>
                </span>
    </form>

I can create the list using the following code :

$('#fileupload').fileupload({
        dataType: 'json',
        add: function (e, data) {
                           $.each(data.files, function (index, file) {
                              //alert('Added file: ' + file.name);
                                 $('<li/>').text(file.name).appendTo('#fileList');
                                            });

                                    },

                                });

But when I submit the form I don get anything in $_FILES or var_dump(files); Can anybody please help me out of what am I missing and how I can accomplish this ? One thing to mention, if I don use the js code for the listing then do get the $_FILES variable having all the selected files.

share|improve this question
1  
Can you post your php code, too, please? – Wolv3r Apr 23 '12 at 7:37
if(($_FILES)) var_dump($_FILES); else echo "Nothing"; – marifrahman Apr 23 '12 at 7:53
However, U can check the entire code here : pastebin.com/BBZLaGJk – marifrahman Apr 23 '12 at 7:56

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.