Ver Mensaje Individual
  #5 (permalink)  
Antiguo 06/06/2018, 14:16
matiri90
 
Fecha de Ingreso: abril-2016
Ubicación: Cordoba
Mensajes: 22
Antigüedad: 8 años
Puntos: 1
Respuesta: Mostrar datos de una tabla mysql con pdo

El error es en el codigo de html..

Puse div, en vez de table..

Solucionado..

Gracias y disculpen el error..
Código HTML:
Ver original
  1. <table class="table table-condensed table-striped table-bordered table-hover">
  2.                         <thead>
  3.                             <tr>
  4.                                 <th>CODIGO</th>
  5.                                 <th>NOMBRE</th>
  6.                                 <th>DESC</th>
  7.                                 <th>RUBRO</th>
  8.                                 <th>SUBRUBRO</th>
  9.                                 <th>PRECIO</th>
  10.                                 <th>VENTA</th>
  11.                                 <th>UNIDAD</th>
  12.                                 <th>PROV</th>
  13.                             </tr>
  14.                         </thead>
  15.                         <?php $listado->lista($columnas, "articulo"); ?>
  16.                 </table>