A better solution would be to perform a redirect after the form data is posted. On the page that does the form processing, after everthing is inserted into the database, just put this in your code...
header("Location: commentpage.php");
exit;
You can even put in a message to confirm the data was entered correctly.
header("Location: commentpage.php");
$_SESSION["messages"] = "Your comment has been successfully added.";
exit;