Files
Bachelor-Thesis/PCSurvey/PCstatic/write_data.php
Andreas Wilms 78481ca337 init
python
2025-09-09 19:40:44 +02:00

9 lines
328 B
PHP

<?php
$post_data = json_decode(file_get_contents('php://input'), true);
// the directory "data" must be writable by the server
$name = "/Data/".$post_data['filename'].".json";
//$name = "logsOutput/".$post_data['filename'].".json";
$data = $post_data['filedata'];
// write the file to disk
file_put_contents($name, $data);
?>