mirror of
https://github.com/YunoHost-Apps/chtickynotes_ynh.git
synced 2024-09-03 18:15:57 +02:00
c63ca08270
Copied from ynh-chtickynotes and begining of boards management
10 lines
No EOL
292 B
PHP
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);
|
|
}
|
|
?>
|