I want to time a decimal result in sql, like this :
// script
$currency =mysqli_fetch_array( $db->query("SELECT value FROM `currency` where `currency_code` = 'USD' ") );
// $currency['value'] = 0.00001234;
// type : float(15,8)
$result = 5000 * $currency['value'] ;
// end script
and the result is 0.
I want a real result.. What must I change ?