I have a website that doesn't really work the way I want it to. If you enter a name and comment, it will properly write it below the comment section. But when you refresh, the name becomes null.
I think your table row title was "name" not "commenter" https://github.com/thebestbestman123/my_magazine/blob/master/php/get_comments.php
$rowarray["name"] = $row["commenter"];
Based from your saving row name: https://github.com/thebestbestman123/my_magazine/blob/master/php/add_comment.php
sprintf("INSERT INTO comments (id, name, comment, timestamp) VALUES (null, '%s', '%s', null)"