codice:
if( $_POST['act'] == 'gest' ){
	echo '
FromServer
';
	$xmlstr = $_POST['dati'];	
	echo 'sto per testare
';
	$xml = simplexml_load_string($xmlstr);
	foreach($xml->newTeam as $name ){
		echo "riga ".$name.'
';
	}
	echo 'fatto!';
}