आप mysqli_query से परिणाम प्रिंट नहीं कर सकते, यह mysqli_resource है और त्रुटि को डंप करने के लिए आपको mysql_error() को mysqli_error()
में बदलना होगा।$username = "bob";
$db = mysqli_connect("localhost", "username", "password", "user_data");
$sql1 = "select id from user_information where username='$username'";
$result = mysqli_query($db, $sql1) or die(mysqli_error());
while ($row = mysqli_fetch_array($result, MYSQLI_ASSOC)) {
echo $row['id'].'<br>';
}