<?php

require_once '../negocio/dependencia.class.php';
require_once '../util/funciones/Funciones.class.php';
$objDependencia = new Dependencia();
try {
    $registros = $objDependencia->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>&nbsp;</th>    
                    <th>CODIGO</th>
                    <th>NOMBRE DEPENDENCIA</th>
                    <th>TELEFONO</th>
                    <th>CIUDAD</th>
                    <th>OPCIÓN</th>
                   
            </tr>
    </thead>
    <tbody>
        <?php 
for ($i = 0; $i < count($registros); $i++) {
<?php

require_once '../negocio/dependencia.class.php';
$objDependencia = new Dependencia();
$resultado = $objDependencia->listar();
echo json_encode($resultado);
?>