Files
Bachelor-Thesis/PCSurvey/PCstatic/write_data.php
Andreas Wilms cdcd870b6f init
2025-09-08 16:25:55 +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);
?>