From d4983604b4e41596bfc301083e1412fb6e70a460 Mon Sep 17 00:00:00 2001 From: Mehdi Achour Date: Sun, 31 Oct 2004 19:38:54 +0000 Subject: [PATCH] fix 30632 : mysqli_stmt_fetch returns a boolean git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@171750 c90b9560-bf6c-de11-be94-00142212c4b1 --- reference/mysqli/functions/mysqli-stmt-fetch.xml | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/reference/mysqli/functions/mysqli-stmt-fetch.xml b/reference/mysqli/functions/mysqli-stmt-fetch.xml index 10732f609e..4de9c8a495 100644 --- a/reference/mysqli/functions/mysqli-stmt-fetch.xml +++ b/reference/mysqli/functions/mysqli-stmt-fetch.xml @@ -1,5 +1,5 @@ - + mysqli_stmt_fetch @@ -12,24 +12,27 @@ Description Procedural style: - mixedmysqli_stmt_fetch + boolmysqli_stmt_fetch objectstmt Object oriented style (method): stmt - mixed + bool fetch - mysqli_stmt_fetch returns row data using the variables bound by mysqli_stmt_bind_result. + mysqli_stmt_fetch fetch the result from a prepared + statement into the variables bound by + mysqli_stmt_bind_result. &return.success; - Note that all columns must be bound by the application before calling mysqli_stmt_fetch. + Note that all columns must be bound by the application before calling + mysqli_stmt_fetch.