what is formula of php
Answers
Answered by
0
I have formula as string
$comm = "(a x 5% - 2%)";
I want it to be $comm = $a * 5/100 * (1-2/100);
How can I do this in
$comm = "(a x 5% - 2%)";
I want it to be $comm = $a * 5/100 * (1-2/100);
How can I do this in
smuskan317:
i don't know
Answered by
0
HERE IS YOUR ANSWER
$comm=$a*5/100*(1-2/100)
HOPE THIS HELPS....
$comm=$a*5/100*(1-2/100)
HOPE THIS HELPS....
Similar questions