diff --git a/index.php b/index.php index 0b843ed..4bcb6d8 100644 --- a/index.php +++ b/index.php @@ -1,10 +1,15 @@ 'success', - 'message' => 'PHP backend reageert succesvol!', + 'message' => 'PHP backend reageert naar behoren.', 'timestamp' => date('d-m-Y H:i:s'), 'php_version' => PHP_VERSION, 'memory_usage' => round(memory_get_usage() / (1024 * 1024), 2) . ' MB', @@ -14,7 +19,6 @@ if (isset($_GET['api']) && $_GET['api'] === 'status') { exit; } -// Server configuratie & variabelen date_default_timezone_set('Europe/Amsterdam'); $serverTime = date('d-m-Y H:i:s'); $phpVersion = PHP_VERSION; @@ -28,604 +32,214 @@ $protocol = (!empty($_SERVER['HTTPS']) && $_SERVER['HTTPS'] !== 'off') ? 'HTTPS'
-