append data to json file php code example
Example 1: file_put_contents php json file
$data[] = $_POST['data'];
$inp = file_get_contents('results.json');
$tempArray = json_decode($inp);
array_push($tempArray, $data);
$jsonData = json_encode($tempArray);
file_put_contents('results.json', $jsonData);
Example 2: append data to json file php
test1rwww33rwrw