<?php require_once '../negocio/Cargo.class.php'; $objcargo = new Cargo(); $resultado = $objcargo->listar(); echo json_encode($resultado); ?>
<?php require_once '../negocio/Cargo.class.php'; require_once '../util/funciones/Funciones.class.php'; $objcargo = new Cargo(); try { $registros = $objcargo->listar(); // echo '<pre>'; // print_r($registros); // echo '</pre>'; } catch (Exception $exc) { Funciones::mensaje($exc->getMessage(), "e"); } ?> <table id="tabla-listado" class="table table-bordered table-striped"> <thead> <tr> <th> </th> <th>CODIGO</th> <th>NOMBRE DEL CARGO</th> <th>OPCIĆN</th> </tr> </thead> <tbody> <?php for ($i = 0; $i < count($registros); $i++) { echo '<tr>'; echo "<td align=\"center\">" . "<input type=\"checkbox\" name=\"seleccion\" id=\"seleccion\"" . " value='" . $registros[$i]["0"] . "'>\n </form> \n </td>";