#author("2022-05-21T15:39:40+09:00","default:honma","honma") * PHPで簡易メモ帳 [#mfaf5afd] ちょっと出先でメモを残すためにphpで書きなぐったコード。~ 安全のためにBASIC認証をしておけば、スマホじゃなくてもメモができるってことで... #highlight(php){{ <?php $memo = ''; $memo = file_get_contents("memo.txt"); if($_SERVER['REQUEST_METHOD'] === 'POST'){ $memo = $_POST['memo']; file_put_contents("memo.txt", $memo); } ?> <!DOCTYPE html> <html lang="ja"> <head> <meta charset="utf-8"> <title>test</title> <style> .sample { width: 100%; /* 横幅 100% */ height: 100vh; /* 縦 100vh(Viewport Height) */ box-sizing: border-box; } </style> </head> <body> <form action="" method="POST"> <input type="submit" value="Save"> <textarea class="sample" type="text" name="memo" placeholder="まぁ一般的なメモ" cols="30" rows><?php echo ($memo) ?></textarea> </form> </body> </html> }} #highlight(end) #htmlinsert(amazon_pc.html);