Advertisement
rana1704

Sums a series

Nov 1st, 2020
2,359
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.19 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <title></title>
  5. </head>
  6. <body>
  7.  
  8.     <?php
  9.  
  10.  
  11.    
  12. $a=1; $b=5;
  13.     $s=0;
  14.  
  15.     for($x=$a; $x<=$b; $x++)
  16.     $s= $s+$x;
  17.     echo $s;
  18.  
  19.  
  20.  
  21.  
  22. ?>
  23. </body>
  24. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement