From b43554902d8904457c629dea9f6bfd9536853340 Mon Sep 17 00:00:00 2001 From: jbousquie Date: Tue, 27 Sep 2016 16:41:18 +0200 Subject: [PATCH] ajout fonction premiereconnexion et nbconnexions --- admin/connexions.php | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/admin/connexions.php b/admin/connexions.php index a9c71df..a1a8974 100644 --- a/admin/connexions.php +++ b/admin/connexions.php @@ -190,6 +190,27 @@ function Salles() { return $salles; } +// Fonction NbConnexions() +// Renvoie le total des connexions dans la table +function NbConnexions() { + $db = db_connect(); + $req = 'select count(*) from connexions'; + $res = db_query($db, $req); + $count = db_fetch_row($res); + return $count[0]; +} + +// Fonction PremiereConnexion() +// renvoie la date de la toute première connexion +function PremiereConnexion() { + $db = db_connect(); + $req = 'select debut_con from connexions order by con_id limit 1'; + $res = db_query($db, $req); + $prem = db_fetch_row($res); + return $prem[0]; +} + + // Fonction Connexions_wifi() // Renvoie les connexions wifi non marquées "close" en base // Retourne un array indexé de connexions :