[Solved] How to solve this mathematical equation in php [closed]
Just group the D’s first and dont hardcode the indices, use $i $S = array(); $D = array(); $M = array(“1″=>30,”2″=>31,”3″=>30); $Y = array(“1″=>360,”2″=>360,”3″=>360); $O = 30000; $P = 0.3; $N = 10509.74; for($i = 1, $size = count($M); $i <= $size; $i++){ $final_D = 0; // group the D’s first (O-D1), (O-D1-D2), … and … Read more