In trying to do some elementary math, I am having problems echoing the output of these variables:
$retention = 800$employees;
$retention = number_format($retention);
$prolo = $salaryminute(260*$employees);
$prolo = number_format($prolo);
$tblo = $retention+$prolo;
$tblo = number_format($tblo);
The first four lines produce fine.
$retention outputs "1,600,000"
$prolo outputs "109,200"
All I want to do is have $tblo output these two added. But it ouputs "110".
Where am I going wrong?