Ver Mensaje Individual
  #1 (permalink)  
Antiguo 28/09/2009, 17:07
hsolar
 
Fecha de Ingreso: octubre-2007
Mensajes: 18
Antigüedad: 17 años, 5 meses
Puntos: 0
deserializar formulario en php enviado con jquery serilize

function presionSubmit()
{

var frmImportA = $('#formulario');
var dataString = frmImportA.serialize();

$.ajax({
async:true,
type: "POST",
dataType: "html",
contentType: "application/x-www-form-urlencoded",
url:"pagina1.php",
data:"numero="+dataString,
beforeSend:inicioEnvio,
success:llegadaDatos,
timeout:4000,
error:problemas
});
return false;
}

este codigo serializa un formulario y lo envia con ajax, cuando lo recivo en php no se como deserializar ojala alguien pueda ayudar