- 메이저
- 미국
- 아시아 - 태평양
- 유럽, 중동 및 아프리카
";
foreach($arr as $record2){
if ($record == $record2){
if ($count == 0)
$output .= '
- | ';
else
$output .= "
- | ";
} else {
if ($count == 0)
$output .= '
';
else
$output .= ' | ';
$output .= number_format($rates[$record2]/$rates[$record], 4, '.', '') . " | ";
}
}
$output .= "";
$count++;
}
echo $output;
}
?>