<?PHP
$text1 = $_GET["text1"];
$array = json_decode(file_get_contents(__DIR__."/Text.json"), true);
$text1 = urldecode($text1)
if (isset($text1)){
$array["text1"] = $text1;
}
$data = json_encode($array);
file_put_contents(__DIR__."/Text.json", $data);
echo "+";
?>