I'm trying to edit json item property value by id, but it deleted all content exept the specific item i updated.
$projectsArr = json_decode(file_get_contents("../db/memory.json"), true);
foreach($projectsArr['memory'] as $mydata) {
if($mydata['id'] == $_POST['id']) {
$mydata['approved'] = true;
$json = json_encode($mydata, JSON_UNESCAPED_UNICODE);
file_put_contents('../db/memory.json', $json);
}
}