gpt4 book ai didi

html - MySQL 文本条目与 html 文本框不匹配

转载 作者:行者123 更新时间:2023-11-30 01:20:49 24 4
gpt4 key购买 nike

在我的网站中,我根据用户的名字和姓氏组合为用户提供了一个唯一的认证代码。例如:ŠôË¡Ò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。即使我在文本框中输入了正确的代码。

最佳答案

尝试:

mysqli_set_charset($connection, "utf8")

在任何其他查询之前。

并在显示数据的 html head 标签中添加:

<meta charset="UTF-8" />  

关于html - MySQL 文本条目与 html 文本框不匹配,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18559749/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com