Filtrar Mensagem
Fiz Um Sistema de Mensagem,
Quero saber como posso filtrar para ver as mensagens que foram enviadas para mim
Caixa de Mensagem
<main role="main" class="col-sm-9 ml-sm-auto col-md-10 pt-3">
<h2>Caixa de Mensagem: <small><b><?php echo "".$_SESSION['usuarioEmail']; ?></b></small></h2>
<div class="table-responsive">
<table class="table table-striped">
<thead>
<tr>
<th>#</th>
<th>Enviado Por</th>
<th>Para</th>
<th >Mensagem</th>
<th>Enviada</th>
<th>Acoes</th>
</tr>
</thead>
<tbody>
<?php while($row_usuarios = mysqli_fetch_assoc($resultado_usuarios)){?>
<tr>
<td><?php echo $row_usuarios["id"]; ?></td>
<td><?php echo $row_usuarios["emailenviou"]; ?></td>
<td><?php echo $row_usuarios["email"]; ?></td>
<td><?php echo $row_usuarios["mensagem"]; ?></td>
<td><?php echo $row_usuarios["msgenviada"]; ?></td>
<td>
<a href="#"> <button type="button" class="btn btn-success">Responder</button></a>
<a href="#"> <button type="button" class="btn btn-danger">Apagar</button></a></td>
</tr>
<?php } ?>
</tbody>
</table>
</div>
</main>Discussão (1)
Carregando comentários...