<div align="left" style="padding: 10px 0px;"> <table width="100%"> <tr> <td><h5 style="margin-top: 8px;"><i class="fas fa-check"></i> RESPUESTAS ANTERIORES</h5></td> <td align="right" width="200"> <input class="form-control" type="text" placeholder="Búsqueda rápida..." id="buscador" /> </td> </tr> </table> </div> <div class="table-responsive"> <table class="table table-bordered table-sm"> <thead class="thead-dark"> <tr> <th scope="col">#</th> <th scope="col">Nombre</th> <th scope="col">puntaje</th> <th scope="col">tiempo</th> <th scope="col">dia</th> </tr> </thead> <tbody id="tabla_lista"> <?php $count = 1; $query = mysqli_query($connect,"SELECT SUM(puntaje), SUM(tiempo), documento FROM Respuestas_Viejas GROUP BY documento "); while($data = mysqli_fetch_array($query)){ $queryAsis = mysqli_query($connect,"SELECT * FROM Asistentes WHERE cedula = '".$data["documento"]."' "); $dataAsis = mysqli_fetch_array($queryAsis); /* mysqli_query($connect," INSERT INTO Desafio_Respuestas (dia, id_pregunta, id_asistente, opcion, tiempo, puntaje, orden, created_at) VALUES (1, 1, '".$dataAsis["id"]."', '0', '".$data["SUM(tiempo)"]."', '".$data["SUM(puntaje)"]."', 1, '2021-01-19 08:18:00' ) "); mysqli_query($connect," INSERT INTO Desafio_Respuestas (dia, id_pregunta, id_asistente, opcion, tiempo, puntaje, orden, created_at) VALUES (1, 2, '".$dataAsis["id"]."', '0', '0', '0', 2, '2021-01-19 08:18:00' ) "); mysqli_query($connect," INSERT INTO Desafio_Respuestas (dia, id_pregunta, id_asistente, opcion, tiempo, puntaje, orden, created_at) VALUES (1, 3, '".$dataAsis["id"]."', '0', '0', '0', 3, '2021-01-19 08:18:00' ) "); mysqli_query($connect," INSERT INTO Desafio_Respuestas (dia, id_pregunta, id_asistente, opcion, tiempo, puntaje, orden, created_at) VALUES (1, 4, '".$dataAsis["id"]."', '0', '0', '0', 4, '2021-01-19 08:18:00' ) "); mysqli_query($connect," INSERT INTO Desafio_Respuestas (dia, id_pregunta, id_asistente, opcion, tiempo, puntaje, orden, created_at) VALUES (1, 5, '".$dataAsis["id"]."', '0', '0', '0', 5, '2021-01-19 08:18:00' ) "); mysqli_query($connect," INSERT INTO Desafio_Respuestas (dia, id_pregunta, id_asistente, opcion, tiempo, puntaje, orden, created_at) VALUES (1, 6, '".$dataAsis["id"]."', '0', '0', '0', 6, '2021-01-19 08:18:00' ) "); mysqli_query($connect," INSERT INTO Desafio_Respuestas (dia, id_pregunta, id_asistente, opcion, tiempo, puntaje, orden, created_at) VALUES (1, 7, '".$dataAsis["id"]."', '0', '0', '0', 7, '2021-01-19 08:18:00' ) "); mysqli_query($connect," INSERT INTO Desafio_Respuestas (dia, id_pregunta, id_asistente, opcion, tiempo, puntaje, orden, created_at) VALUES (1, 8, '".$dataAsis["id"]."', '0', '0', '0', 8, '2021-01-19 08:18:00' ) "); mysqli_query($connect," INSERT INTO Desafio_Respuestas (dia, id_pregunta, id_asistente, opcion, tiempo, puntaje, orden, created_at) VALUES (1, 9, '".$dataAsis["id"]."', '0', '0', '0', 9, '2021-01-19 08:18:00' ) "); mysqli_query($connect," INSERT INTO Desafio_Respuestas (dia, id_pregunta, id_asistente, opcion, tiempo, puntaje, orden, created_at) VALUES (1, 10, '".$dataAsis["id"]."', '0', '0', '0', 10, '2021-01-19 08:18:00' ) "); mysqli_query($connect," INSERT INTO Desafio_Respuestas (dia, id_pregunta, id_asistente, opcion, tiempo, puntaje, orden, created_at) VALUES (1, 11, '".$dataAsis["id"]."', '0', '0', '0', 11, '2021-01-19 08:18:00' ) "); mysqli_query($connect," INSERT INTO Desafio_Respuestas (dia, id_pregunta, id_asistente, opcion, tiempo, puntaje, orden, created_at) VALUES (1, 12, '".$dataAsis["id"]."', '0', '0', '0', 12, '2021-01-19 08:18:00' ) "); mysqli_query($connect," INSERT INTO Desafio_Respuestas (dia, id_pregunta, id_asistente, opcion, tiempo, puntaje, orden, created_at) VALUES (1, 13, '".$dataAsis["id"]."', '0', '0', '0', 13, '2021-01-19 08:18:00' ) "); mysqli_query($connect," INSERT INTO Desafio_Respuestas (dia, id_pregunta, id_asistente, opcion, tiempo, puntaje, orden, created_at) VALUES (1, 14, '".$dataAsis["id"]."', '0', '0', '0', 14, '2021-01-19 08:18:00' ) "); */ echo ' <tr> <td scope="row">'.$count.'</td> <td>'.$dataAsis["nombre"].' '.$dataAsis["apellidos"].'</td> <td>'.$data["SUM(puntaje)"].'</td> <td>'.$data["SUM(tiempo)"].'</td> <td>1</td> </tr> '; $count++; } ?> </tbody> </table> </div> <script> $(document).ready(function(){ $("#buscador").on("keyup", function() { var value = $(this).val().toLowerCase(); $("#tabla_lista tr").filter(function() { $(this).toggle($(this).text().toLowerCase().indexOf(value) > -1) }); }); }); </script> <script src="js/functions.js"></script>