Advertisement
Guest User

Untitled

a guest
Jun 18th, 2019
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. public function calcular_duracion()
  2. {
  3. $sql = $this->db->prepare("SELECT TIMESTAMPDIFF(minute, inicio, fin) from reunion");
  4.  
  5. $sql->execute(array());
  6.  
  7. $resultado = $sql->fetchAll();
  8.  
  9. foreach ($resultado as $row) {
  10.  
  11. echo $row[];
  12. }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement