gpt4 book ai didi

php - 我的 select PHP 函数无法正常工作

转载 作者:行者123 更新时间:2023-11-29 07:59:35 26 4
gpt4 key购买 nike

我创建了一个Web服务并调用一个函数来确认用户,但是每次调用该函数时,即使我发送了错误的验证码,我也会收到“注册已确认”消息,这是我的函数实现,考虑ckey是常量并且不可更改,每个用户的 vercode 都可以更改,我认为问题出在 mysql 指令上。

// RPC method 2 (confirm user)
function confuser($ckey, $vercode) {
$db = mysql_connect("localhost","root");
if(!$db){
return 'Error: cannot open the connection';
exit;
}

mysql_select_db('user_info');
$query = "select * from personal where vercode='".$vercode."' and ckey='".$ckey."' ";
$result = mysql_query($query, $db);
if($result){
return 'registration confirmed';
}
else{
return 'wrong verification , send it again!';
}
}

最佳答案

你可以使用这样的东西:

if(mysql_num_rows($result) > 0){
return 'registration confirmed';
}
else{
return 'wrong verification , send it again!';
}

关于php - 我的 select PHP 函数无法正常工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24208474/

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