A versatile interface for the info-sphere in form of a world map with timeline with changing borders, created to be used in other projects
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

123456789101112131415161718192021222324252627282930313233343536373839
  1. <?php
  2. ini_set('display_errors', 1);
  3. ini_set('display_startup_errors', 1);
  4. if(!isset($_SESSION)) session_start();
  5. $GLOBALS['debugData'] = "";
  6. $GLOBALS['phpErrors'] = "";
  7. $GLOBALS['sqlErrors'] = "";
  8. include('server/debugfunctions.php');
  9. mysqli_report(MYSQLI_REPORT_ERROR);
  10. set_error_handler("errorhandler", E_ALL);
  11. ?>
  12. <!DOCTYPE html>
  13. <html>
  14. <head>
  15. <meta charset="UTF-8">
  16. <meta name="description" content="">
  17. <meta name="keywords" content="">
  18. <meta name="author" content="">
  19. <meta name="date" content="" scheme="YYYY-MM-DD">
  20. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  21. <title></title>
  22. <link rel="stylesheet" type="text/css" href="styles/style.css">
  23. <script src="scripts/jquery-3.3.1.min.js"></script>
  24. </head>
  25. <body>
  26. </body>
  27. </html>
  28. <?php
  29. include('server/debug.php');
  30. ?>