Last active
August 29, 2015 14:06
-
-
Save ryo-utsunomiya/933419b564e3360f547f to your computer and use it in GitHub Desktop.
最低限文化的な掲示板
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
if (isset($_POST['data'])) { | |
file_put_contents($_SERVER['SCRIPT_FILENAME'], htmlspecialchars($_POST['data'], ENT_QUOTES, 'UTF-8'), FILE_APPEND); | |
header('Location: ' . $_SERVER['PHP_SELF']); | |
} | |
?> | |
<form method="post" action=""> | |
<input name="data" type="text"> | |
<input type="submit"> | |
</form> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
DEMO: http://tiny-bbs.herokuapp.com/