Advertisement
Guest User

Untitled

a guest
Jan 20th, 2017
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>A loop of your own</title>
  5. <link type='text/css' rel='stylesheet' href='style.css'/>
  6. </head>
  7. <body>
  8. <?php
  9. //Add while loop below
  10. $coinCount = 0;
  11. while ($coinCount <= 10) {
  12. echo "<p>Coin counting: {$coinCount}</p>";
  13. $coinCount ++;
  14. }
  15. ?>
  16. </body>
  17. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement