codice:
on (release){
	var c = new LoadVars();
	var php_path = 'http://localhost/';
	c.onLoad = function(s) {
		if(s) {
			content.htmlText = "";
			for (i=0; i < this.n; i++) {
				content.htmlText += "" + this["datains"+i] + " " + this["titolo"+i] + "
";
				content.htmlText += "  " + this["news"+i] + "
";
				content.htmlText += "  ID=" + this["id"+i] + "

";
			}
		}
	}
	c.sendAndLoad(php_path+"content.php",c,"POST");
}