06/04/2021, 14:46

Hàm mysqli_next_result() trong PHP - PHP Function

Code $con =m ysqli_connect("localhost","my_user","my_password","my_db"); // Check connection if (mysqli_connect_errno()){ echo "Failed to connect to MySQL: " . mysqli_connect_error(); } $sql = "SELECT Lastname FROM Persons ORDER BY LastName;"; $sql .= "SELECT Country FROM ...

Hàm mysqli_next_result() sẽ chuẩn bị kết quả kế tiếp trong tập hợp các kết quả thiết lập từ hàm mysqli_multi_query().

Cú pháp

Cú phápmysqli_next_result( $connect);

Trong đó:

  • $connect là kết nối MySQL.

Kết quả trả về

Hàm sẽ trả về True nếu chuẩn bị thành công. Ngược lại, nếu kết quả tiếp theo không tồn tại, hàm sẽ trả về False.

Ví dụ

Cách sử dụng hàm mysqli_next_result():

Code
$con =m ysqli_connect("localhost","my_user","my_password","my_db");
// Check connection
if (mysqli_connect_errno()){
	echo "Failed to connect to MySQL: " . mysqli_connect_error();
}

$sql = "SELECT Lastname FROM Persons ORDER BY LastName;";
$sql .= "SELECT Country FROM Customers";

// Execute multi query
if (mysqli_multi_query($con,$sql)){
	do{
    // Store first result set
	    if ($result=mysqli_store_result($con)){
	    	while ($row=mysqli_fetch_row($result)){
	        	printf("%s
",$row[0]);
	    	}
	    	mysqli_free_result($con);
	    }
    }while (mysqli_next_result($con));
}

mysqli_close($con);

Tham khảo: w3schools.com

Nguồn: Zaidap.com.net

Tạ Quốc Bảo

23 chủ đề

7270 bài viết

Cùng chủ đề
0