B
ben
Guest
How do I add decimals in PHP...example...
$var1 = 1.25;
$var2 = $var1+1;
This doesnt work...the value of $var2 is still going to be 1.25..
$var1 = 1.25;
$var2 = $var1+1;
This doesnt work...the value of $var2 is still going to be 1.25..