Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
Chart burndown
:
export.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php header('Content-Type: application/json'); $data = file_get_contents('php://input'); $jsonData = json_decode($data, true); if ($jsonData) { file_put_contents('xxx.json', json_encode($jsonData, JSON_PRETTY_PRINT)); echo json_encode(['status' => 'success']); } else { echo json_encode(['status' => 'error', 'message' => 'Invalid JSON data']); } ?>