This repository has been archived on 2020-08-21. You can view files and clone it, but you cannot make any changes to its state, such as pushing and creating new issues, pull requests or comments.
pa4home/onyx2/include/applications/users/main.php
2011-07-30 00:14:52 +02:00

13 lines
No EOL
220 B
PHP

<?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();
}
?>