forked from javiermunizyt/Akinator-online-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
datos.php
116 lines (68 loc) · 2.02 KB
/
datos.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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
<html>
<head>
<link rel="stylesheet" type="text/css" href="estilo.css">
</head>
<body>
<h1>Javinator</h1>
<hr>
<br>
<?php
//CONECTAMOS CON LA BD
require "conexion.php";
//HACEMOS LA CONSULTA A LA BD
$consulta = "SELECT COUNT(*) FROM arbol WHERE pregunta = 0";
$numero = '0';
if ($resultado = mysqli_query($enlace, $consulta)) {
while ($fila = mysqli_fetch_row($resultado)) {
$numero = $fila[0];
}
mysqli_free_result($resultado);
}
echo "<h3>Personajes registrados: ".$numero."</h3>";
echo "<hr><br>";
//-------------------------------------------------------------------
//CONSULTA PARA VER ACIERTOS
$consulta = "SELECT COUNT(*) FROM partida WHERE acierto = TRUE";
$numero = '0';
if ($resultado = mysqli_query($enlace, $consulta)) {
while ($fila = mysqli_fetch_row($resultado)) {
$numero = $fila[0];
}
mysqli_free_result($resultado);
}
echo "<h3>Aciertos: ".$numero."</h3>";
echo "<hr><br>";
//-------------------------------------------------------------------
//CONSULTA PARA VER FALLOS
$consulta = "SELECT COUNT(*) FROM partida WHERE acierto = FALSE";
$numero = '0';
if ($resultado = mysqli_query($enlace, $consulta)) {
while ($fila = mysqli_fetch_row($resultado)) {
$numero = $fila[0];
}
mysqli_free_result($resultado);
}
echo "<h3>Fallos: ".$numero."</h3>";
echo "<hr><br>";
//-------------------------------------------------------------------
//CONSULTA PARA VER ÚLTIMOS PERSONAJES JUGADOS
$consulta = "SELECT personaje FROM partida ORDER BY id DESC LIMIT 10";
$nombre = '';
echo "<h3>ÚLTIMOS PERSONAJES JUGADOS</h3>";
if ($resultado = mysqli_query($enlace, $consulta)) {
while ($fila = mysqli_fetch_row($resultado)) {
$nombre = $fila[0];
echo $nombre ."<br>";
}
mysqli_free_result($resultado);
}
?>
<br>
<br>
<?php
echo "<hr>";
echo "<br><br><a href='index.php?n=1&r=0'>Volver a probar</a>";
echo "<br>";
?>
</body>
</html>