-
Notifications
You must be signed in to change notification settings - Fork 0
/
finis.php
29 lines (22 loc) · 814 Bytes
/
finis.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<?php include "inc/header.php" ?>
<!-- Begin page content -->
<div class="container">
<div class="row text-center">
<div class="text col-md-12" id="score_box">
<h1>Thanks for playing <a href="./index.php">Party or Popsong</a>! Your score is: <span id="score"></span> / <?php echo count($q_phrases); ?></h1>
<script type="text/javascript">
var score = getScore();
$("#score").html(score);
</script>
<h4>But before you go...</h4>
</div>
</div>
<?php include "inc/about_text.php" ?>
</div>
<script type="text/javascript">
// resets score when leaving page
$(window).bind('beforeunload', function(){
resetScore();
});
</script>
<?php include "inc/footer.php" ?>