-
Notifications
You must be signed in to change notification settings - Fork 0
/
partie.php
60 lines (52 loc) · 1.65 KB
/
partie.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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css">
<style>
td {
border: 1px solid black;
width: 50px;
height: 50px;
cursor: pointer;
font-size: 30px;
text-align: center;
}
.joueur-x {
color: blue;
}
.joueur-o {
color: red;
}
</style>
</head>
<body>
<div class="container">
<h1>Tic Tac Toe</h1>
<?php if ($_GET['joueur'] == 'x'): ?>
<p>Lien pour votre adversaire: <input type="text" id="lien" value="http://<?php echo $_SERVER['SERVER_NAME'] . $_SERVER['PHP_SELF'] . '?joueur=o&partie=' . $_GET['partie']; ?>"></p>
<?php endif; ?>
<p id="mon-tour"<?php if ($_GET['joueur'] != 'x'): ?> style="display: none"<?php endif; ?>>C'est à votre tour de jouer!</p>
<p id="tour-adversaire"<?php if ($_GET['joueur'] != 'o'): ?> style="display: none"<?php endif; ?>>C'est à votre adversaire de jouer!</p>
<h2 id="partie-terminee" style="display: none">Le joueur <span></span> a gagné!</h2>
<table id="grille">
<?php
for($y = 0; $y < 3; $y++) {
echo '<tr>';
for($x = 0; $x < 3; $x++) {
echo "<td id=\"case-$x-$y\" data-x=\"$x\" data-y=\"$y\"></td>";
}
echo '</tr>';
}
?>
</table>
</div>
<?php include('github.html'); ?>
<script src="http://code.jquery.com/jquery-1.11.0.min.js"></script>
<script>
var partie = <?php echo json_encode($_GET['partie']); ?>;
var monJoueur = <?php echo json_encode($_GET['joueur']); ?>;
</script>
<script src="partie.js"></script>
</body>
</html>