sprintf: Considers the string an integer and formats it as a decimal number
<? $total = 110; $fmt_total = sprintf ("%d", $total); echo "$fmt_total"; ?>