Hello,
Using the numbers format I got to the following which doesn't work:
<?php
$file = file_get_contents("http://www.apmex.com");
$do = preg_match('/<span id="ctl08_ctl05_gvMetals_ctl02_label3">(.*)<\/span>/', $file, $matches);
if ($do = true) {
$no_dollar = preg_replace('/[\$,]/', '', $matches);
print $no_dollar['1'];
$dollar = $no_dollar['1']*1.02;
// english notation without thousands seperator
$english_format_number = number_format($dollar, 2, '.', ',');
// 1234.57
print $english_format_number['1'];
} else {
echo "No Price";
}
echo "\n<hr />Price multiplied with 1.02 is ",$no_dollar[1]*1.02;
?>
Thank you,
Jeremy