i'm trying to add dollar values
like
$cost = "12.00";
$othercost = "12.60";
$total = $cost + $othercost;
echo "$ $total";
well i want it to echo "$ 24.60";
but instead its echoing "$ 24.6";
so how do i get around this problem, I've tried using "", '', () but noting seems to work.
thanks for any help
-pb