JSFiddle - React, Tailwind, and code Playground
HTML
<?php
if($_POST){
$name = $_POST['name'];
$content = $_POST['Comments Content'];
$handle = fopen("comments.html","a");
fwrite($handle,"<b>" . $name . "</b>:<br/>" . $comment . "<br?>");
fclose($handle);
}
?>
<html>
<body>
<form action = "" method = "POST">
Comments: <textarea rows = "10" cols = "30" name = "Comments Content"></textarea><br/>
Name: <input type = "text" name = "name"><br/>
<input type = "sumbit" value = "Post!"><br/>
</form>
<?php include "comments.html"; ?>
</body>
</html>