I have a basic index.php page with some variables that I want to print in several places - here are the variables:
You could use
if (is_float($var)) { echo number_format($var,2,'.',''); } else { echo $var; }