Hello everyone and I hope you can help me.
I have 'value' => $amount_to_pay
and I want $amount_to_pay to me multiplied by 0.11 but the output to be limited to only 2 decimals. It is for PayPal.
I used 'value' => $amount_to_pay*0.11
but what comes after the decimal is long and getting an error back from PayPal exp: 589.24*0.11 = 64.8164 I want output to be 64.81
Thank you