<?php if($_POST['content']){ $fh = fopen("file.txt", "w"); fwrite($fh, $_POST['content']); fclose($fh); } ?><form method=post> <textarea name=content><?php echo file_get_contents("file.txt"); ?></textarea> <input type=submit value="Отправить"> </form>
$fh = fopen("file.txt", "a"); fwrite($fh, $_POST['content']."\n");
<?php if($_POST['content']){ $fh = fopen("file.txt", "a"); fwrite($fh, $_POST['content']."\n"); fclose($fh); } ?><form method=post> <textarea name=content></textarea> <input type=submit value="Отправить"> </form>