First commit, current version 0.2
This commit is contained in:
commit
872acdbc01
353 changed files with 45771 additions and 0 deletions
13
onyx2/include/applications/users/main.php
Normal file
13
onyx2/include/applications/users/main.php
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
<?php
|
||||
//Fichier appelé pour afficher l'application
|
||||
if (isset($_POST['message']))
|
||||
{
|
||||
|
||||
}
|
||||
else
|
||||
{
|
||||
$bdd = new BDD();
|
||||
$json["users"] = $bdd->query("SELECT * FROM users ORDER BY last_visite DESC;");
|
||||
$bdd->deconnexion();
|
||||
}
|
||||
?>
|
||||
Reference in a new issue