Beispiel #1
0
                        <div class="col-lg-12">
                            <div class="content-panel">
                                <h4><i class="fa fa-user"></i> Lista do ROP</h4>
                                <section id="unseen">
                                    <table class="table">
                                        <thead>
                                            <tr>
                                                <th> ID </th>
                                                <th> Nome </th>
                                                <th class="numeric"> DETALHES </th>
                                                <th class="numeric"> REMOVER </th>
                                            </tr>
                                        </thead>
                                        <tbody>
                                            <?php 
$lista = $fachada->listarROP()->fetchAll(PDO::FETCH_OBJ);
foreach ($lista as $linha) {
    ?>
                                                <tr>
                                                    <td><?php 
    echo $linha->id_rop;
    ?>
</td>
                                                    <td><?php 
    echo $linha->nome_rop;
    ?>
</td>
                                                    <td><a href="detalhesROP.php?id=<?php 
    echo $linha->id_rop;
    ?>
"<button class="btn btn-theme"> Detalhes </button></a></td>