Skip to content

Instantly share code, notes, and snippets.

@ryo-utsunomiya
Last active August 29, 2015 14:06
Show Gist options
  • Save ryo-utsunomiya/933419b564e3360f547f to your computer and use it in GitHub Desktop.
Save ryo-utsunomiya/933419b564e3360f547f to your computer and use it in GitHub Desktop.
最低限文化的な掲示板
<?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>
@ryo-utsunomiya
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment