ho capito il problema: non serve fare il parsing ma solamente scorrere l'array restituito da JSON:
ottenendo così le coppie indice, valore.Codice PHP:
$.each(msg, function(index, value) {
alert(index+': '+value);
});
ho capito il problema: non serve fare il parsing ma solamente scorrere l'array restituito da JSON:
ottenendo così le coppie indice, valore.Codice PHP:
$.each(msg, function(index, value) {
alert(index+': '+value);
});