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
Chtixof c63ca08270 Created
Copied from ynh-chtickynotes and begining of boards management
2015-02-26 23:40:40 +01:00

10 lines
No EOL
292 B
PHP

<?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);
}
?>