21 lines
571 B
Plaintext
21 lines
571 B
Plaintext
<?php
|
|
/**
|
|
* EXAMPLE: Dashboard Chart Monthly Endpoint dengan CORS Handler
|
|
*/
|
|
|
|
// ================= CORS HANDLER (WAJIB PALING ATAS) =================
|
|
header("Access-Control-Allow-Origin: *");
|
|
header("Access-Control-Allow-Methods: GET, POST, OPTIONS");
|
|
header("Access-Control-Allow-Headers: Content-Type, Authorization, X-API-KEY");
|
|
|
|
if ($_SERVER['REQUEST_METHOD'] === 'OPTIONS') {
|
|
http_response_code(200);
|
|
exit;
|
|
}
|
|
// ================= END CORS HANDLER =================
|
|
|
|
header('Content-Type: application/json');
|
|
|
|
// ... logic chart monthly yang sudah ada ...
|
|
|