-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhistorique.php
76 lines (70 loc) · 2.05 KB
/
historique.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<?php
include("./includes/fonctions.php");
include("./includes/header_connexion.php");
if(isset($_GET["joueur"]))
{
$joueur = $_GET["joueur"];
}
$req = $bdd -> prepare("SELECT * FROM historique WHERE j1 = :joueur OR j2 = :joueur ORDER BY date ");
$req->bindParam(":joueur",$joueur);
$req -> execute();
?>
<div class="container-fluid bg-1 text-center">
<button type="button" class="col-md-2 col-md-offset-1 btn btn-primary btn-lg large-button" onclick="location.href='./page_regles.php'">Règles</button>
<button type="button" class="col-md-4 col-md-offset-1 btn btn-primary btn-lg large-button" style="height:80px" onclick="location.href='./defier.php'">Défier</button>
<button type="button" class="col-md-2 col-md-offset-1 btn btn-primary btn-lg large-button" onclick="location.href='./classement.php'">Classement</button>
</div>
<div class="container-fluid bg-2">
<div class="well well-lg overflow">
<table class="col-md-8 col-md-offset-2">
<?php
$i = 1;
while($row = $req->fetch())
{
?>
<tr>
<td><?php
if($row["result"] == 0)
{
print("Égalité");
}
else if(($row["result"] == 1))
{
if($row["j1"] == $joueur)
{
print("Victoire");
$name = $row["j2"];
}
else
{
print("Défaite");
$name = $row["j1"];
}
}
else
{
if($row["j2"] == $joueur)
{
print("Victoire");
$name = $row["j1"];
}
else
{
print("Défaite");
$name = $row["j2"];
}
}
?> contre <a href="./profil_joueur.php?joueur=<?php echo urlencode($name); ?>"><?php echo htmlspecialchars($name); ?></a>
</td>
<td class="text-right"> <?php echo htmlspecialchars($row["date"]); ?> </td>
</tr>
<?php
$i=$i+1;
}
?>
</table>
</div>
</div>
<?php
include("./includes/footer.php")
?>