calculation
Posted: Wed Nov 23, 2005 5:53 am
I have to add this part to my code to do the next calculation : 1,5+((A-1)x0,5) where A is a number the visitor enters in a form
A community of PHP developers offering assistance, advice, discussion, and friendship.
http://forums.devnetwork.net/
Code: Select all
$result = 1.5 + (($A - 1) * 0.5);