How to run two sql StoredProcedures in php page? when I run two storedprocedures page is taking time to load?

Jaisheel Vishwakarma 1 Reputation point
2021-11-20T12:17:11.107+00:00

This is my first sql stored procedure
$sql = ("CALL Login_Details($ID);");
$result = mysqli_query($conn, $sql);
$row = mysqli_fetch_array($result);

mysqli_next_result($conn);
When I run the second procedure page is taking time to load

This is second procedures
$project = ("CALL Project($id);");

$result = mysqli_query($conn, $project);

SQL Server
SQL Server
A family of Microsoft relational database management and analysis systems for e-commerce, line-of-business, and data warehousing solutions.
13,361 questions
{count} votes