I have 2 database fields
`decval` decimal(5,2) `intval` int(3)
I have 2 pdo queries that update them. The one that updates the int works ok
There isn't any PDO::PARAM for decimals / floats, you'll have to use PDO::PARAM_STR.
PDO::PARAM
PDO::PARAM_STR