-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
46 lines (45 loc) · 1.19 KB
/
index.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
<?php
require_once 'base.php';
sesion();
$juegos = $db->select('*', 'juegos');
$estados = array('P'=>'posicionandose', 'J'=>'jugando', 'F'=>'finalizado');
pag_head('lista de juegos');
?>
juegos:
<table>
<tr>
<th>nombre</th>
<th>pista</th>
<th>jugadores</th>
<th>creacion</th>
<th>estado</th>
<th></th>
</tr>
<?php foreach($juegos as $juego){
$estado = 'F';
$jugadores = $db->select('nombre, lugar, COUNT(*) as movs',
'jugadores j JOIN usuarios u ON u.id = j.usuario_id LEFT JOIN movimientos m ON m.jugador_id = j.id',
array('juego_id' => $juego['id']), 'GROUP BY j.id');
foreach($jugadores as $k => $v){
$jugadores[$k] = $v['nombre'].($v['lugar']?' ('.$v['lugar'].')':'');
if($estado=='F'){
if($v['movs'] < 2) $estado = 'P';
else if(!$v['lugar']) $estado = 'J';
}
}
?>
<tr>
<td><?=$juego['nombre']?></td>
<td><?=substr($juego['pista'], 7, -4)?></td>
<td><?=implode(', ', $jugadores)?></td>
<td><?=$juego['fecha']?></td>
<td><?=$estados[$estado]?></td>
<td><a href="jugar.php?juego=<?=$juego['id']?>">jugar</a></td>
</tr>
<? } ?>
</table>
<a href="host.php">crear juego nuevo</a>
<br/>
<br/>
<a href="sugerencias.php">sugerencias</a>
<?php pag_foot();?>