ho provato anche:
codice:
myVar = new LoadVars();
myVar.onLoad = function(ok) {
if(ok){
a= this.id
id_array = new Array(a);
testo_id.text = id_array;
n_tre.text = id_array[3];
n_id.text = id_array.length;
}else{
testo_id.text = "errore";
}
};
myVar.sendAndLoad("img_num.php", myVar, "POST");
ed anche:
codice:
myVar = new LoadVars();
myVar.onLoad = function(ok) {
if(ok){
a= this.id
}else{
testo_id.text = "errore";
}
};
myVar.sendAndLoad("img_num.php", myVar, "POST");
id_array = new Array(a);
testo_id.text = id_array;
n_tre.text = id_array[3];
n_id.text = id_array.length;
ma niente di nuovo...