D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
var
/
www
/
html
/
chatweb02
/
application
/
views
/
admin
/
Filename :
consultas.php
back
Copy
<table class="tabela3 col-md-12 col-lg-12" > <thead > <tr> <th style="height:40px">Local</th> <th style="height:40px">Usuário</th> <th style="height:40px">Data</th> <th style="height:40px">Mensagem</th> <th style="height:40px">Acao</th> </tr> </thead> <tbody > <?php foreach ($consultas as $usuario) { $local = $usuario->cht_con_tipo == 'G' ? $usuario->cht_con_nome." (Grupo)" : $usuario->cht_usu_nome." (Chat privado) "; echo '<tr> <td style="width:120px">'.$local.'</td> <td style="">'.$usuario->cht_usu_nome.'</td> <td style="">'.$usuario->dhapresentacao.'</td> <td style="width:220px">'.substr($usuario->cht_men_texto,0,120).'</td> <td style=""> <a target="_blank" href="'.$this->config->base_url().'chats/conversapesquisa/'.$usuario->cht_men_id.'"> Ver mais </a> </td> </tr>'; } ?> </tbody> </table> <nav aria-label="Page navigation example"> <ul class="pagination"> <li class="page-item"> <a class="page-link" href="#" aria-label="Previous"> <span aria-hidden="true">«</span> </a> </li> <?php for($pag=0;$pag<=($paginas/10);$pag++){ ?> <li class="page-item <?php echo $pagina==($pag+1) ? 'active' : ''; ?>"><a class="page-link " href="javascript:void(0)" onclick="javascript:consultar(<?php echo $pag+1; ?>)" ><?php echo $pag+1; ?></a></li> <?php } ?> <li class="page-item"> <a class="page-link" href="#" aria-label="Next"> <span aria-hidden="true">»</span> </a> </li> </ul> </nav>