</div>
          </form>
          <div class="col-md-4">
          <table class="table table-hover">
              <thead>
            <tr>
              <th>Nombre del Logro</th><th>Requisito</th>
            </tr>
            <tr>
              
            </tr>
            <label>Requisito:</label>
      <select id="estilo_select" name="idReqLogro" class="form-control">
      
                                     <?php 
$requisito = $cuadroC->seleccionar_logro();
if ($requisito != null) {
    foreach ($requisito as $key => $info) {
        echo '<option value=' . $info["idLogro"] . '>' . $info["nomLogro"] . '</option>';
    }
} else {
    echo '<option value="">No se encontro..</option>';
}
?>
                                    
                                </select>
          </thead>

          <tbody>
          <?php 
try {