jajajaj pase por lo mismo y llegue a desarrollar esto espero y te ayude.
Código Javascript
:
Ver original$(function(){
// $('#files').empty();
$('#file_upload').uploadify({
'uploader' : 'js/uploadify/uploadify.swf',
'script' : 'js/uploadify/uploadifyiu.php',
'multi' : true,
'auto' : true,
'height' : '32',
'width' : '189',
'sizeLimit' : '46080',
'buttonImg' : 'js/uploadify/img/browse.png',
'cancelImg' : 'js/uploadify/img/cancel.png',
'folder' : 'img/uploads',
'fileExt' : '*.jpg',
'fileDesc' : 'Seleccione imagenes (.jpg)',
'onComplete' : function(event, queueID, fileObj, response) {
$.ajax({
type: "GET",
url: "ajax.php?pag=uploadImage",
data: {nameFile:fileObj.name},
dataType: "html",
success: function(msg){
if(parseInt(msg)!=0){
$('<li></li>').appendTo('#uploadImg').html('<img src="img/uploads/'+fileObj.name+'" />');
}
}
});
}
});
});
//////////////////////////
//Una ves completado la carga, envio los valores para ser guardados al servidor
onComplete:
--> ajax.php?pag=uploadImage
// Envio el nombre del fichero
--> nameFile:fileObj.name
// Muestro el fichero subido al servidor
--> $('<li></li>').appendTo('#uploadImg').html('<img src="img/uploads/'+fileObj.name+'" />');
-----------------------------------------------------------------------------------------------------------------------
//Codigo PHP
case "uploadImage":
$rutFile = $_REQUEST['nameFile'];
$uploadImage = new UploadImage($rutFile);
$uploadImage->InsertImage();
break;
Espero y te apueda ayudar a los menos a darte una idea,, Saludos SUERTE ¡¡