Ver Mensaje Individual
  #10 (permalink)  
Antiguo 04/06/2011, 09:14
Avatar de HackmanC
HackmanC
 
Fecha de Ingreso: enero-2008
Ubicación: Guatemala
Mensajes: 1.817
Antigüedad: 16 años, 3 meses
Puntos: 260
Sonrisa Respuesta: No me sube imagen

Hola,

Posiblemente porque no estas enviando el archivo,

Cita:
Iniciado por Jota_sk Ver Mensaje
// Enviamos el formulario usando AJAX
$.ajax({
type: 'POST',
url: $(this).attr('action'),
data: $(this).serialize(),
// Mostramos un mensaje con la respuesta de PHP
success: function(data) {
$('#result').html(data);
}
For a form element's value to be included in the serialized string, the element must have a name attribute. Data from file select elements is not serialized.

http://api.jquery.com/serialize/

Saludos,