everything I do returns
warning: trying to access array offset on value of type null
when I print the $userinfo it returns my array but when I try to to grab a key it returns my error; and in 2nd returns f
$userinfo = mysqli_fetch_assoc ($row);
print_r($userinfo);
echo $userinfo['Name'];
print_r(isset($userinfo["Email"])?$userinfo["Email"] : "f");