Como agregar correctamente un filtro con php

Anteriormente ya me han dicho en este foro como se agrega el buscador, el problema es que al agregar AND mdl_user. Firstname LIKE '%busqueda%'"; ya no me arroja nada de información, por favor si alguien es tan amable en ayudarme. Gracias

$busqueda = $_GET['texto_busqueda'];

$sql="SELECT mdl_logstore_standard_log.id, firstname, lastname, action , ip, fecha FROM mdl_user INNER JOIN mdl_logstore_standard_log ON mdl_logstore_standard_log.userid = mdl_user.id
WHERE (mdl_logstore_standard_log.action = 'loggedin' OR mdl_logstore_standard_log.action = 'loggedout') AND mdl_user.firstname LIKE '%busqueda%'";
$resultado=mysqli_query($conexion,$sql);

?>
<!DOCTYPE html>

<body>
<form method="post" action="sesiones.php">

<input type="text" name="texto_busqueda">

<input type="submit" name="buscar" value="buscar">
</form>

<br>
<div class="row table-responsive">
<table class="table table-striped table-bordered table-hover table-full-width" id="sample_1">
<thead>
<tr>
<th>Id</th>
<th>Nombre</th>
<th>Apellido</th>
<th>Accion</th>
<th>Tiempo</th>
<th>Ip</th>
<th></th>
<th></th>
</tr>
</thead>
<tbody>
<?php while($row =$resultado->fetch_array(MYSQL_ASSOC)) { ?>
<tr>
<td><?php echo $row ['id'];?></td>
<td><?php echo $row ['firstname'];?></td>
<td><?php echo $row ['lastname'];?></td>
<td><?php echo $row ['action'];?></td>
<td><?php echo $row ['fecha'];?></td>
<td><?php echo $row ['ip'];?></td>
<td><a href="modificarse.php?id=<?php echo $row ['id'];?>"><img src="img/lapiz.png""></span></a></td>
<td><a href="eliminarse.php?id=<?php echo $row ['id'];?>"><img src="img/trash.jpg""></span></a></td>

</tr>
<?php }?>
</tbody>
</table>
</div>

<script type="text/javascript" src="js/jquery.dataTables.min.js"></script>
<script type="text/javascript" src="js/DT_bootstrap.js"></script>
<script src="js/table-data.js"></script>
<script>
jQuery(document).ready(function() {
Main.init();
TableData.init();
});
</script>

</body>
</html>

Respuesta
1

Te respondí en otra pregunta pero tu error es que no debes poner LIKE '%busqueda%' sino LIKE '%$busqueda%', que es la variable que contiene el valor de la búsqueda.

Añade tu respuesta

Haz clic para o

Más respuestas relacionadas