gpt4 book ai didi

PHP mysql_num_rows() 期望参数1为resource

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

我在使用这个简单代码的标题中遇到了问题。

//Only Validate if the date is unique
$checkdatequery = mysql_query("SELECT TOP 1 * FROM user_info WHERE date ='".mysql_real_escape_string(stripslashes($_REQUEST['date']))."'", $db);
$rownumxx = mysql_num_rows($checkdatequery);
if($rownumxx == 0)
{
echo'You are allowed to proceed.';
}
else
{
echo'You are not allowed to proceed.';
}

我不确定我做错了什么。在此先感谢那些愿意提供帮助的人

最佳答案

MySQL中没有TOP关键字,你应该使用LIMIT

应该是

$checkdatequery = mysql_query("SELECT * FROM user_info WHERE date ='".mysql_real_escape_string(stripslashes($_REQUEST['date']))."' LIMIT 1", $db);

关于PHP mysql_num_rows() 期望参数1为resource,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22293924/

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