File "export02.php"
Full Path: /home/analogde/www/Chart burndown/export02.php
File size: 441 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
header('Content-Type: application/json');
$data = file_get_contents('php://input');
$objetTache = json_decode($data, true);
$file = 'zzz.json';
if (file_exists($file)) {
// Si le fichier existe, effacer son contenu
file_put_contents($file, '');
}
// Écrire les données dans le fichier
file_put_contents($file, json_encode($objetTache, JSON_PRETTY_PRINT));
echo json_encode(['status' => 'success']);
?>