Why is this chopping the end of my number off?
lets say that
$quantity = 100,000
$stores = 5
if ($multistore == "Total"){
$new_quantity = $quantity;
} else {
$new_quantity = ($quantity / $stores);
}
After it does this my
$new_quantity = 20
Why is it cutting off the other three zeros?