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
:
save_objet_tache001.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php header('Content-Type: application/json'); $input = file_get_contents('php://input'); $data = json_decode($input, true); if (json_last_error() === JSON_ERROR_NONE) { $file = 'objet_tache.json'; file_put_contents($file, json_encode($data, JSON_PRETTY_PRINT)); echo json_encode(['status' => 'success']); } else { echo json_encode(['status' => 'error', 'message' => 'Invalid JSON']); } ?>