Okay, I need to find a variable $x, when given what it equals in a math problem
Anyone know enough math, and PHP to get me out of this problem? I need to find a way to turn it into anPHP Code:$y = '.3334';
1000 = $x + ($x * $y);
$x = ...
Printable View
Okay, I need to find a variable $x, when given what it equals in a math problem
Anyone know enough math, and PHP to get me out of this problem? I need to find a way to turn it into anPHP Code:$y = '.3334';
1000 = $x + ($x * $y);
$x = ...
$x = 1000/(1 + $y);