在这个例子中如何将mysql_result转换为mysqli结果

I understand how to fetch a result in mysqli, but how would this example be coded for mysqli?

    for ($i = 0; $i < $num_rows; $i++) {
    $uname = mysql_result($result, $i, "username");
    $email = mysql_result($result, $i, "email");

    echo "<tr><td>$uname</td><td>$email</td></tr>
";
}

Thanks for taking a look

You can do like this:

for ($i = 0; $i < $num_rows; $i++) {
    $row = mysqli_fetch_assoc($result);
    $uname = $row["username"];
    $email = $row["email"];

    echo "<tr><td>$uname</td><td>$email</td></tr>
";
}

Assuming you've converted your other calls to return $result as a mysqli_result object, the most efficient way to do this would probably be

while ($row = $result->fetch_assoc())
{
    echo "<tr><td>{$row['username']}</td><td>{$row['email']}</td></tr>
";
}