<h6 class='pull-right' id="currentInfo"></h6>
          <table id="example1" class="table table-bordered table-striped">
            <thead>
              <tr>
                <?php 
foreach ($fields as $field) {
    $name = $field["Name"];
    echo "<th>{$name}</th>";
}
?>
              </tr>
            </thead>
            <tbody>
              <?php 
foreach ($students as $student) {
    $info = $view->getStudentInfo($student);
    if (isset($info[0])) {
        $info = $info[0];
    }
    for ($i = 2; $i < count($info) / 2; $i++) {
        if (isset($info[$i])) {
            echo "<td>{$info[$i]}</td>";
        }
    }
    echo "</tr>";
}
?>
            </tbody>
            <tfoot>
              <tr>
                <?php