Minase Posted May 30, 2008 Share Posted May 30, 2008 $d = 51; while ($d <= 60) { $costs2 =($d++ - 4 ); $costs1 = pow($costs2, 2.6); $coststr = (int) $costs1; $da = $coststr.",\n"; $dd = array($da); foreach ($dd as &$value) { $value = $value * 2; } echo $value."\n"; i have the above code,how can i make the sum of all arrays? cause its just returning the normal ones i want to have a variable that has the final answer in it here is what is curently return 44512 47016 49606 52280 55044 57894 60834 63862 66984 70196 i want a sum of those all numbers how can i do it? thank you. Quote Link to comment Share on other sites More sharing options...
MadTechie Posted May 30, 2008 Share Posted May 30, 2008 <?php $d = 51; $total = 0; while ($d <= 60) { $costs2 =($d++ - 4 ); $costs1 = pow($costs2, 2.6); $coststr = (int) $costs1; $da = $coststr.",\n"; $dd = array($da); foreach ($dd as &$value) { $value = $value * 2; } echo $value."\n"; $total = $total + $value; } echo "total = $total\n"; ?> Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.