Lines Matching refs:stmt
15 if (!($stmt = mysqli_stmt_init($link)) ||
16 !mysqli_stmt_prepare($stmt, "SELECT id, label FROM test") ||
17 !mysqli_stmt_execute($stmt) ||
18 !($result = mysqli_stmt_result_metadata($stmt)) ||
19 !mysqli_stmt_bind_result($stmt, $id, $bind_res) ||
23 while (mysqli_stmt_fetch($stmt)) {
27 mysqli_stmt_close($stmt);
29 if (!($stmt = mysqli_stmt_init($link)) ||
30 !mysqli_stmt_prepare($stmt, "SELECT id, label FROM test") ||
31 !mysqli_stmt_execute($stmt) ||
32 !($result = mysqli_stmt_result_metadata($stmt)) ||
33 !mysqli_stmt_bind_result($stmt, $id, $bind_res)) {
40 while (mysqli_stmt_fetch($stmt)) {
44 mysqli_stmt_close($stmt);