私の Web サイトでは、姓と名の組み合わせに基づいて、一意の認証コードをユーザーに提供しています。例: Šô˨ÒxèÕñZɬ.åŠ ¦$ø¨R³ÇtzÒÁ{Ú. ただし、認証コードが表示されるテキストボックスにそれを貼り付けると、SQL エントリと一致しません。SQL テーブルの内容を表示するページを作成しました。うまくいかないのはなぜですか?
$certification = $_GET["Certification"];
$firstname = $_GET["Firstname"];
$information = mysqli_query($con, "SELECT * FROM SCstudents WHERE Firstname = '$firstname'");
$row = mysqli_fetch_array($information);
$cert = $row['Certification'];
if ($cert == $certification)
{
...signup code...
}
私はいつも $cert !== $certification を取得します。テキストボックスに正しいコードを入力しても。