Esempio n. 1
0
                                <section id="unseen">
                                    <table class="table">
                                        <thead>
                                            <tr>
                                                <th>ID</th>
                                                <th>Nome</th>
                                                <th class="numeric"> CPF </th>
                                                <th class="numeric"> E-Mail </th>
                                                <th class="numeric"> Telefone </th>
                                                <th class="numeric"> Alterar</th>
                                                <th class="numeric"> Remover </th>
                                            </tr>
                                        </thead>
                                        <tbody>
                                            <?php 
$lista = $fachada->listarUsuario()->fetchAll(PDO::FETCH_OBJ);
foreach ($lista as $linha) {
    ?>
                                                <tr>
                                                    <td><?php 
    echo $linha->id_usuario;
    ?>
</td>
                                                    <td><?php 
    echo $linha->nome_usuario;
    ?>
</td>
                                                    <td><?php 
    echo $linha->cpf_usuario;
    ?>
</td>