Advertisement
Guest User

Untitled

a guest
Dec 21st, 2014
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.74 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. $rolls = 0;
  11. $streetprogress = 0;
  12. $lastroll = 0;
  13. while($streetprogress < 3){
  14. $roll = rand(1,6);
  15. $rolls ++;
  16. if($streetprogress == 0){
  17. $streetprogress ++;
  18. }
  19. else if($roll == $lastroll ++)
  20. {
  21. $streetprogress ++;
  22. }
  23. else
  24. {
  25. $streetprogress = 0;
  26. };
  27. echo $roll;
  28. echo "<p>";
  29. $lastroll = $roll;
  30. }
  31. echo "congratulations, you hit the Jackpot!";
  32.  
  33.  
  34. ?>
  35. </body>
  36. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement