linkpi_firmware_history/rootfs/link/web/upcfg.php

10 lines
225 B
PHP
Raw Normal View History

2024-02-15 22:07:30 +01:00
<?php
$response = array();
if(move_uploaded_file($_FILES['file']['tmp_name'], "/link/config/config.json")){
$response['isSuccess'] = true;
}else{
$response['isSuccess'] = false;
}
echo json_encode($response);
?>