这是我的代码,用于测试记录是否存在。
$con = mysqli_connect('127.0.0.1', 'root', '', 'mysql');
if (mysqli_connect_errno())
{
echo "Failed to connect to MySQL: " . mysqli_connect_error();
return;
}
$userid=100000306995504;
$result = mysqli_query($con,"select url from userpost where userid ='".$userid."' LIMIT 1 ");
$bool = mysqli_fetch_assoc($result);
if($bool['url'])
{
echo 'yes';
}
else
echo 'no';
但即使表中存在记录,结果仍为No
。
有什么不对吗?