You have to understand that this piece of code...
$row = mysql_fetch_row($result);
...only returns the number of rows. So, you'd have to access the values by using the index/name. Here's an example.
while ($row = mysql_fetch_array($result))
{
echo "Name :{$row['user_login']} <br>" .
"Email : {$row['user_email']} <br>" .
"User Level : {$row['meta_key']} <br><br>";
"Value of User Level : {$row['meta_value']} <br><br>";
}