私の例については、http://jflaugher.mystudentsite.net/cmweb241/cmweb241_lab2.htmlにアクセスしてください。
動作する htmlspecialchars と、二重引用符と一重引用符を削除する str_replace 関数が必要なだけです。なぜこれがうまくいかないのですか?私はPHPに非常に慣れていません:/
<?php
$username = str_replace(array("'", "\""), "", htmlspecialchars($_POST['username']));
$password = str_replace(array("'", "\""), "", htmlspecialchars($_POST['password']));
$comment = str_replace(array("'", "\""), "", htmlspecialchars($_POST['comment']));
echo " <p>Your Username is: $username . </p>";
echo " <p>Your Password is: $password . </p>";
echo " <p>Your Comment was: $comment . </p>";
?>