If i do the normal calculation means its working, but if i pass the value from form means its not working kindly please help me.
For example:
echo $a=(1.5 * 10E-8) - (4.6 * 10E-8);
Result : -3.1E-7 but its not working when I get the values from form.
For example:
echo $m3=($_REQUEST['m3']); echo "<br>"; \* m3 value getting from form */
echo $m2=($_REQUEST['m2']); echo "<br>"; \* m2 value getting from form */
echo $b=$m3-$m2;
Result : -3.1
I need the result fully with that scientific notation.