Advertisement
Guest User

Untitled

a guest
Dec 2nd, 2016
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. Goes wherever:
  2. <link rel="stylesheet" type="text/css" href="style.css">
  3.  
  4. under "Your Hand" for now:
  5. <?php
  6. $test = array(0, 6, 8, 50);
  7. revealHand($test);
  8. function revealHand($ids) {
  9. $numOfIds = count($ids);
  10. for ($i = 0; $i < $numOfIds; $i++) {
  11. $imgNum = $ids[$i];
  12. echo "<img src=$imgNum.png />";
  13. }
  14. }
  15. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement