diff --git a/reference/mysqli/functions/mysqli-stmt-free-result.xml b/reference/mysqli/functions/mysqli-stmt-free-result.xml new file mode 100644 index 0000000000..e35a09e8ba --- /dev/null +++ b/reference/mysqli/functions/mysqli-stmt-free-result.xml @@ -0,0 +1,66 @@ + + + + + mysqli_stmt_free_result + stmt->free_result + Frees stored result memory for the given statement handle + + + Description + Procedural style: + + voidmysqli_stmt_free_result + objectstmt + + Object oriented style (method): + + stmt + + void + free_result + void + + + + The mysqli_stmt_free_result function frees the result memory + associated with the statement represented by the + stmt parameter, which was allocated by + mysqli_stmt_store_result. + + + + &reftitle.returnvalues; + + This function doesn't return any value. + + + + &reftitle.seealso; + + mysqli_stmt_store_result + + + + + +