1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/chtickynotes_ynh.git synced 2024-09-03 18:15:57 +02:00
chtickynotes_ynh/sources/fav.php

10 lines
292 B
PHP
Raw Normal View History

<?php
$text=file_get_contents('php://input');
if ($text!="") {
file_put_contents('allnotes.json', $text);
header("Cache-Control: no-cache, must-revalidate");
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
header("Content-Type: application/json; charset=utf-8");
echo($text);
}
?>