Qui mi sembrava di essermi avvicinato di molto a quello che volevo... MA ottengo un Errore:
Notice: Trying to get property of non-object in /Users/..../pagina.php on line 36

Che è questa
$Ask = $result->FunzioneDiUnServizioAPagamentoResult->CarQuote->Ask;


codice:
$marche = array("Audi", "Bmw", "Toyota", "Volswagen");
$valute = array("USD", "EUR", "GBP");

foreach ($marche as $val_marche)
{
	echo "Marca :" . $val_marche . "
";
	echo "<table border='0'>
			<tr>
				<th>Val</th>
				<th>Bid</th>
				<th>Ask</th>
	";

	foreach ($valute as $valore)
	{
		$param = array('Types' => "Audi,Totota,Bmw,Volswagen", 'Currency' => $valore);		
		$result = $client->FunzioneDiUnServizioAPagamento($param);

		$Bid = $result->FunzioneDiUnServizioAPagamentoResult->CarQuote->Bid;
		$Ask = $result->FunzioneDiUnServizioAPagamentoResult->CarQuote->Ask;
	
		echo "<tr>";
		echo "	<td>$valore</td>
				<td>$Bid</td>
				<td>$Ask</td>";
		echo "</tr>";
		
	}
	echo "</table>";

}