I'm trying to multiply a variable by a decimal (percentage) but it's outputting 0 as the value. The variable has a dollar sign and two decimal places ($53,900.00).
$baseprice = $53,900.00;
$ott = .92;
echo ($baseprice * $ott);
I think the currency sign ($) is messing it up. Can someone help?