| // +----------------------------------------------------------------------+ // // $Id: example.php,v 1.3 2005/06/23 08:10:19 cross Exp $ /** * Example using Services_ExchangeRates to create a form-based currency converter * * @package Services_ExchangeRates */ /** * Requires Services_ExchangeRates to function */ require_once 'Services/ExchangeRates.php'; /** * Creates new instance of currency converter * * @param string Choose where the exchange rates are coming from. In this case, * it's the European Central Bank. * @param string Choose where the currency rates are coming from. In this case, * it's the United Nations. */ $conv = new Services_ExchangeRates('ECB', 'UN'); ?>