It looks like you're new here. If you want to get involved, click one of these buttons!
onUploadSuccess : function(file,data,response) {
$("#myForm").append("<input type=\'hidden\' id=\'img_"+file.id+"_fileName\' name=\'img_"+file.id+"_fileName\' value=\'"+data+"\' />"); // INSERT IMAGE FILENAME IN A HIDDEN FORM FIELD
// this is what I added to check if file data was being appended, it is alerting all file data from the queue
alert(file.id + " : " + data);
}
onQueueComplete: function (stats) {
$(\'#myForm\').submit(); // THIS IS AN EXAMPLE, YOU CAN SUBMIT YOUR INFOS WITH AJAX IF YOU WANT
}
[img_SWFUpload_0_1_fileName] => p1010280.jpg
[img_SWFUpload_0_2_fileName] => p1010287.jpg
// relavent Uploadify settings:
'fileSizeLimit' : 50*1024, // MB
'queueSizeLimit' : 20
// relavent php settings set via htaccess:
php_flag session.auto_start on
php_flag file_uploads on
php_value upload_max_filesize 60M
php_value post_max_size 60M