dongliehuan3925 2017-03-11 08:32
浏览 27
已采纳

PHP脚本不适用于我的db [duplicate]

I've written following php script:

$sql = "SELECT * FROM `URLs` WHERE `durchsucht` = \'0\' LIMIT 0, 1 ";
$result = mysqli_query($db, $sql);

$row = mysqli_fetch_row($result);

$URL = $row['URL'];
echo $row['URL'];

unfortunately I get this error:

'mysqli_fetch_assoc() expects parameter 1 to be mysqli_result boolean given'

I've already got another table (within the same db) and there works this code... I appreciate every answer!

</div>
  • 写回答

1条回答 默认 最新

  • douzhizao0270 2017-03-11 08:40
    关注

    Your result set may have zero records, so you can make use of $result->num_rows to check whether result set has data or not

    if ($result->num_rows > 0)
    {
         $row = mysqli_fetch_row($result);
         $URL = $row['URL'];
         echo $row['URL'];
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?