Danke. Ich hab es jetzt soweit abgeändert und jetzt kann ich auch html und php schreiben, ohne dass es explodiert. Würdest du noch etwas empfehlen?
<?php
if(isset($_POST['name']) AND isset($_POST['comments']))
{
$name = htmlentities($_POST["name"]);
$comments = htmlentities($_POST["comments"]);
$posting = '<p>' . $name . " schrieb:</p>\n\n <p>" . $comments . "</p>\n\n ";
$posting = stripslashes($posting);
$posting = str_replace("\\\\", "\\", $posting);
$posts = fopen("posts.txt","a") or die('shit happens');
fwrite($posts, $posting);
fclose($posts);
}
$give = implode("",file("posts.txt"));
echo $give;
?>