Guest User

Untitled

a guest
Jun 18th, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. ## For
  2. <?php
  3. for ($i = 0; $i < 100; $i++) {
  4. echo $i . "<br />";
  5. }
  6.  
  7. ## While
  8. <?php
  9. $i = 0;
  10. while ($i < 100) {
  11. echo $i . "<br />";
  12. $i++;
  13. }
Add Comment
Please, Sign In to add comment