I have created a form that outputs the SUM() of a row, however, the number is a large string and I want to separate the number into values using correct numerical format such as 1,000,000.00, etc.
I found the,
number_format();
function, I'm just not sure how to add it too my statements,
<?php echo round($row_benTotal['SUM(ben)'],2); ?>
Any suggestions?
Thank you.