E:
/
home
/
kbcomunicacao1
/
Web
/
innterage
/
controlers
/
Upload File
HOME
<div class="col-lg-10 animated fadeInRight"> <div class="mail-box-header"> <form method="get" action="index.html" class="pull-right mail-search"> <div class="input-group"> <input type="text" class="form-control input-sm" name="search" placeholder="Procurar mensagem" id="filter"> <div class="input-group-btn"> <button type="submit" class="btn btn-sm btn-primary"> Procurar </button> </div> </div> </form> <h2> Inbox (<?php echo $rows1; ?>) </h2> <div class="mail-tools tooltip-demo m-t-md"> <div class="btn-group pull-right"> <button class="btn btn-white btn-sm"><i class="fa fa-arrow-left"></i></button> <button class="btn btn-white btn-sm"><i class="fa fa-arrow-right"></i></button> </div> <form enctype="multipart/form-data" name="process" method="POST" action="includes/processinbox.php" > <button class="btn btn-white btn-sm" data-toggle="tooltip" data-placement="left" title="Atualizar"><i class="fa fa-refresh"></i> Refresh</button> <button class="btn btn-white btn-sm" type="submit" name="desproc" data-toggle="tooltip" data-placement="top" title="Marcar como lido"><i class="fa fa-eye"></i> </button> <button class="btn btn-white btn-sm" type="submit" name="proc" data-toggle="tooltip" data-placement="top" title="Marcar como importante"><i class="fa fa-exclamation"></i> </button> <button class="btn btn-white btn-sm" type="submit" name="exc" data-toggle="tooltip" data-placement="top" title="Excluir"><i class="fa fa-trash-o"></i> </button> </div> </div> <div class="mail-box"> <table class="table footable table-hover table-mail" data-page-size="30" data-filter=#filter> <tbody> <?php while($res1 = mysqli_fetch_assoc($result1)){ ?> <tr class="<?php if($res1['lido_inbox']==0){echo"unread";}else{echo"read";} ?>"> <td class="check-mail"> <input type="checkbox" name="enviar[]" value="<?php echo $res1['id_inbox']; ?>"> </td> <td class="mail-ontact"><a href="./?pag=inbox&inbox=verinbox&pin=<?php echo $res1['chave_inbox']; ?>"><?php echo $res1['nome_user']; ?> <?php echo $res1['sobrenome_user']; ?></a></td> <td class="mail-subject"><a href="./?pag=inbox&inbox=verinbox&pin=<?php echo $res1['chave_inbox']; ?>"><?php echo $res1['assunto_inbox']; ?></a></td> <td class="text-right mail-date"><?php echo dbDateToDate2($res1['data_inbox']); ?> às <?php echo $res1['hora_inbox']; ?></td> </tr> <?php } ?> </form> </tbody> </table> </div> </div>