<style> body { background-size: cover; background-position: center; background-attachment: fixed; /* background-image: url(<?php echo $url; ?>/img/bg_juegos.jpg); */ background-color: #939597; } </style> <div class="col-md-12"> <div class="container"> <?php echo $rersp; ?> <div class="row"> <div class="col-md-12" align="center"> <h1 style="color: #ffffff;">RANKING</h1> </div> <div class="col-md-12" align="center" style="color: #fff; "> <h3>Drive Trip</h3> <hr> <div class="table-responsive" style="background-color: #fff; border-radius: 12px; overflow: hidden; max-width: 800px; padding: 5px 30px;"> <table class="table"> <thead> <tr> <th scope="col">PosiciĆ³n</th> <th scope="col">Equipo</th> <th scope="col">Puntaje</th> <th scope="col">Tiempo</th> </tr> </thead> <tbody> <?php $count = 1; $q = "select distinct(rm.equipo), subtime((select hora_fin from respuesta_map as r where r.equipo = rm.equipo order by r.juego_id DESC limit 1), (select hora_inicia from respuesta_map as r where r.equipo = rm.equipo order by r.juego_id limit 1)) as tiempo, (select sum(r.puntaje) from respuesta_map as r where r.equipo=rm.equipo) as puntaje from respuesta_map as rm order by 3 DESC,2"; $queryR1 = mysqli_query($connect, $q); while ($dataR1 = mysqli_fetch_array($queryR1)) { echo ' <tr> <td>' . $count . '</td> <td>' . $dataR1["equipo"] . '</td> <td>' . round($dataR1["puntaje"]) . ' pts.</td> <td>' . $dataR1["tiempo"] . '</td> <tr> '; $count++; } ?> </tbody> </table> </div> </div> <div class="col-6"> <a href="/eventos" class="btn btn_juegos">Volver</a> </div> <div class="col-6 text-right" > <a href="/auditorio" class="btn btn_juegos" >Ir a auditorio</a> </div> </div> </div> </div>