index.php 471 B

123456789101112131415161718
  1. <?php
  2. if (isset($_GET["command"])) {
  3. switch ($_GET["command"]) {
  4. case "official_channels.list":
  5. require("../.htconfig.php");
  6. global $dblink;
  7. $chanList = $dblink->query("SELECT channel, default_join FROM knacki_official;");
  8. $chanList->setFetchMode(PDO::FETCH_OBJ);
  9. $result = array();
  10. while ($i = $chanList->fetch())
  11. array_push($result, $i);
  12. echo json_encode($result);
  13. break;
  14. }
  15. }
  16. ?>