Simple Notepad, you can still easily sent to any server in the HTTP Post method.
Simple Notepad, you can still easily sent to any server in the HTTP Post method.
If you make the destination server can free application development , it can be used as a notepad client
[POST format]
*Parameter name = value
u = Unique ID ofmemo
t = Title
c = memo text
ud = Modified
cd = creation date and time
[Server side program sample]
<?php
$uid = $_POST["u"];
$title = $_POST["t"];
$content = $_POST["c"];
$updated_at = $_POST["ud"];
$created_at = $_POST["cd"];
echo $uid;
echo $title;
echo $content;
echo $updated_at;
echo $created_at;
?>