Can anyone see why this SQL query works in Firefox but not in Chrome or Edge. In Chrome and Edge I get the following error:
Warning: mysqli_fetch_assoc() expects parameter 1 to be mysqli_result, boolean given in /home/mydomain/public_html/apps/2018/index.php on line 154
$query_ArrayLookup = "SELECT SeqID FROM ".$SequenceNo_default." WHERE SeqActive = 0";
$ArrayLookup = mysqli_query($link,$query_ArrayLookup);
$ArrayLookupCount = $ArrayLookup->num_rows;
while ($row_ArrayLookup = mysqli_fetch_assoc($ArrayLookup)){ // Line 154
$ActiveSeq[] = $row_ArrayLookup['SeqID'];
}