Advertisement
Guest User

Untitled

a guest
Jun 24th, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.27 KB | None | 0 0
  1.         $total = 0;
  2.        
  3.         foreach($info->offer as $offer)
  4.         {
  5.             $total += $offer->{'exchange-rate'};
  6.            
  7.             echo $offer->{'exchange-rate'} . " " . $total . "<br/>";
  8.         }
  9.  
  10. tulostaa:
  11. 0.016 0
  12. 0.016 0
  13. 0.016 0
  14. 0.016 0
  15. 0.016 0
  16. 0.016 0
  17. 0.016 0
  18. 0.016 0
  19. 0.016 0
  20. 0.016 0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement