我有一个问题。当数据库只有一行使用Mysql和PHP时,我无法执行循环中存在的查询。我正在解释下面的代码。
$sqlchk=mysqli_query($con,"select * from db_send_evoucher_code where receiver='".$userid."'");
if(mysqli_num_rows($sqlchk) >0){
while($row=mysqli_fetch_array($sqlchk)){
$vCode=$row['voucher_code'];
echo $vCode;exit;
}
}
这里我没有得到echo值。我可以在这里提到我在db_send_evoucher_code
表中只有一行。请帮助我。