How do I make PHP display integer values with commas separating the thousands e.g. £150,000???
Thanks in advance
http://www.php.net/manual/function.number-format.php
echo(number_format($number,2));
i.e 100,000,000.00
echo(number_format($number));
i.e. 100,000,000
Thanks, that's exactly what I needed 🙂
Or
Price: $<?php print number_format("$row[13]")?>