Whats wrong with this query
$yourfriendsbud = mysqli_query($con, "SELECT avatar,firstname,lastname,id
FROM people
INNER JOIN friends
ON
people.id=friends.zatrazio_id
WHERE status=0 AND dobio_id='$user_id' LIMIT 50");
while($row = mysqli_fetch_array($yourfriendsbud))
It reports the error:
Warning: mysqli_fetch_array() expects parameter 1 to be mysqli_result, boolean given in /home/u573639388/public_html/menu.php on line 64
line 64 is
while($row = mysqli_fetch_array($yourfriendsbud))