<?php
if(!empty($this->result)) {
?>
<tr><th><a href="javascript:void(0)" class="sort view_by period_id" data-viewby="period_id" id="sort_period_id">Period</a></th>
	<th><a href="javascript:void(0)" class="sort view_by currency_from_id" data-viewby="currency_from_id" id="sort_currency_from_id">From Currency</a></th>
	<th id="sort_currency_to_id">To Currency</th>
	<th id="sort_exchange_rate">Exchange Rate</th>
</tr>
<?
	foreach($this->result as $dataresult){?>
		<tr>
		<td><?= $dataresult['period_id']?></td>
		<td><?= $dataresult['fromCurrencies']['ISO_4217_code']?></td>
		<td><?= $dataresult['toCurrencies']['ISO_4217_code']?></td>
		<td><?= $dataresult['exchange_rate']?></td>
		</tr>
	<? }
}else{
	?><tr><th colspan="4" align="center"><?= $this->errMsg;?></th></tr><?
}

?>
