graph.php 787 B

12345678910111213141516171819202122232425
  1. <?php
  2. require_once "{$_SERVER['DOCUMENT_ROOT']}/dependencies.php";
  3. $calificaciones = $db
  4. ->where('moodle_host_id', $_SESSION['moodle_id'])
  5. ->get('snapshot_calificaciones');
  6. ?>
  7. <table>
  8. <thead>
  9. <tr>
  10. <th>Nombre</th>
  11. <th>Calificación</th>
  12. <th>Fecha</th>
  13. </tr>
  14. </thead>
  15. <tbody>
  16. <?php foreach ($calificaciones as $calificacion): ?>
  17. <tr>
  18. <td><?= $calificacion['moodle_host_id'] ?></td>
  19. <td><?= strlen($calificacion['calificaciones']) > 100 ? substr($calificacion['calificaciones'], 0, 100) . '...' : $calificacion['calificaciones'] ?></td>
  20. <td><?= $calificacion['created_at'] ?></td>
  21. </tr>
  22. <?php endforeach; ?>
  23. </tbody>
  24. </table>