Guest User

Untitled

a guest
May 20th, 2018
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.10 KB | None | 0 0
  1. <?php
  2. for ( $i = 1000; $i >= 0; $i-- )
  3. {
  4. if ( $i % 5 == 0 )
  5. {
  6. echo "$i<br/>";
  7. }
  8. }
  9. ?>
Add Comment
Please, Sign In to add comment