Ответы выше верны, когда указывают на метод onComplete. Единственное, что я должен добавить, это попросить вас опубликовать весь ваш звонок для загрузки. OnComplete должен быть встроен в ваш звонок. Это должно выглядеть примерно так.
$('#sampleFile').uploadify({
'uploader': 'include/uploadify/uploadify.swf',
'script': 'add_list.php',
'scriptData': {'mode': 'upload'},
'fileDataName': 'newUpload',
'folder': '/work/temp/uploads',
'cancelImg': 'images/cancel.png',
'queueID': 'uploadQueue',
'onComplete': function (event, queueID, fileObj, response, data) {
// A function that triggers when a file upload has completed. The default
// function removes the file queue item from the upload queue. The
// default function will not trigger if the value of your custom
// function returns false.
// Parameters
// event: The event object.
// queueID: The unique identifier of the file that was completed.
// fileObj: An object containing details about the file that was selected.
// response: The data sent back from the server.
// data: Details about the file queue.
}
});