request.php 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <?php
  2. /*
  3. * Registration form for Coliberator
  4. * Copyright (C) 2014 Fundația Ceata - http://ceata.org
  5. *
  6. * Author: Victor Nițu (vnitu@ceata.org)
  7. *
  8. * This program is free software: you can redistribute it and/or modify
  9. * it under the terms of the GNU Affero General Public License as
  10. * published by the Free Software Foundation, either version 3 of the
  11. * License, or (at your option) any later version.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU Affero General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU Affero General Public License
  19. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  20. */
  21. session_start();
  22. $filename = dirname(__FILE__) . '/coliberator2014.db';
  23. $db = new SQLite3($filename);
  24. function count_all() {
  25. global $db;
  26. $counter = $db->querySingle("SELECT count(*) AS c FROM PARTICIPANTS;");
  27. echo $counter;
  28. }
  29. if (!isset($_GET['action'])) {
  30. die('Nothing here.');
  31. }
  32. if (!function_exists($_GET['action'])) {
  33. die('Request not valid.');
  34. }
  35. $_GET['action']();