CARIA.1.0.0

Restruct all repositories
Add :
- Files UserWebSite
- IA openCV Tuto
- Alphabot docs for first maquette
This commit is contained in:
ccunatbrule
2023-02-12 12:24:39 +01:00
parent 1f9312201e
commit 0a6ce8df24
61 changed files with 989 additions and 375 deletions

View File

@@ -0,0 +1,15 @@
<?php
function get_MemberCount()
{
global $bdd;
$TotalDesMembres = $bdd->query('SELECT COUNT(*) FROM Client')->fetchColumn();
return $TotalDesMembres;
}
function get_LastMember()
{
global $bdd;
$req = $bdd->query('SELECT pseudo, idclient FROM Client ORDER BY idclient DESC LIMIT 0, 1');
$data = $req->fetch();
return $data;
}