This question already has an answer here:
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>