Originariamente inviato da ventuno
okay... dopo tanto penare... ce l'ho FATTA!!
bastava usare il do..while
non so come hai fatto a risolvere perche' i riferimenti che hai messo in funzione ( parlo del this ) non sono mica riferiti alla LoadVars...



se scrivi:
function showContent() {
for (i=0; i < 10; i++) {
this["tab"+i].name.text = this["name"+i] + " " + this["sname"+i];
this["tab"+i].role.text = this["role"+i];
this["tab"+i].numb.text = this["numb"+i];
this["tab"+i].onRelease = function() {
}
}
}
a cosa pernsi che si riferisca ad esempio this["name"+i] ???
Di sicuro non ai dati che ti sono arrivati dal file php.

Prova cosi', vedrai che va.
codice:
stop();

var myVars = new LoadVars();

myVars.path = this;

myVars.onLoad = function() {
	for (i=0; i < 10; i++) {
		this.path["tab"+i].name.text = this["name"+i] + " " + this["sname"+i];
		this.path["tab"+i].role.text = this["role"+i];
		this.path["tab"+i].numb.text = this["numb"+i];
		this.path["tab"+i].onRelease = function() {
			//
		}
	}
}

myVars.load("dbpass.php");