Untitled


SUBMITTED BY: antoineh1

DATE: May 8, 2016, 2:08 p.m.

FORMAT: Text only

SIZE: 1.1 kB

HITS: 5122

  1. <!doctype HTML>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title>Megumin is love</title>
  6. <link rel="icon" href="favicon.ico" type="image/x-icon">
  7. <link rel="stylesheet" href="css/style.css">
  8. </head>
  9. <body>
  10. <script>
  11. function play() {
  12. document.getElementById('yamero').play();
  13. }
  14. </script>
  15. <?php
  16. $startcount = 0;
  17. if (isset($_POST['button'])) {
  18. $startcount = countInc();
  19. }
  20. function countInc() {
  21. $count = ("counter.txt");
  22. $clicks = file($count);
  23. $clicks[0]++;
  24. $counter = fopen("counter.txt", "w+") or die("Error opening counter.txt!");
  25. fwrite($counter, "$clicks[0]");
  26. return $clicks[0];
  27. }
  28. ?>
  29. <div id="box">
  30. <a id="counter"></a>
  31. <form method="POST">
  32. <input type="submit" id="button" name="button" value="やめろ!!" onclick="play();">
  33. </form>
  34. </div>
  35. <audio id="yamero" src="yamero.mp3" preload="auto"></audio>
  36. </body>
  37. </html>

comments powered by Disqus