<?php

require_once '../negocio/personal.class.php';
require_once '../util/funciones/Funciones.class.php';
$objPersonal = new Personal();
try {
    $registros = $objPersonal->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>APELLIDOS</th>
                    <th>NOMBRES</th>
                    <th>DNI</th>
                    <th>SEXO</th>
                    <th>F. NACIMIENTO</th>
                    <th>DIRECCIÓN</th>
                    <th>CORREO</th>
                    <th>ÁREA</th>
                    <th>CARGO</th>
                    <th>CIUDAD</th>
<?php

require_once '../negocio/personal.class.php';
$objPersonal = new Personal();
$resultado = $objPersonal->listar();
echo json_encode($resultado);