Hello,
//format price $a_row[price] = number_format ($a_row[price]);
has an output(example): 12,000,000
But I want it to be: 12.000.000
Any suggestions would be greatly apprecciated.
Regards Jaap
try
$a_row[price] = number_format ($a_row[price],2,'.','.');
that should do the trick. btw you might want to read the manual before posting. =)
http://www.php.net/manual/en/function.number-format.php
-nate
Thanks Nate! And yeah, I've read the manual on number formatting, but since I'm a total newbie I didn't get it.
Thanks again!
Jaap