Tôi đã tìm thấy câu trả lời:
Tôi cần lưu trữ kết quả (Lưu trữ kết quả (để lấy thuộc tính))
Tôi cần tìm nạp kết quả (Tìm nạp kết quả từ một câu lệnh đã chuẩn bị vào các biến liên kết) Rất vui khi không có vòng lặp while.
$db = new mysqli("localhost","root","password","xxx");
$statement = $db->prepare("SELECT name, password FROM persons WHERE name=? LIMIT 1");
$statement->bind_param('s', "kevin");
$statement->execute();
$statement->store_result(); // this is what I was missing
if($statement->num_rows){
$statement->bind_result($dbname, $dbpassword);
$statement->fetch(); // this is what I was missing
$statement->free_result();
echo $dbname;
echo $dbpass;
};