From 04c78f51e95eb2a3613e00ffed35b001eaa812b2 Mon Sep 17 00:00:00 2001 From: Mehdi Achour Date: Thu, 15 May 2003 15:59:04 +0000 Subject: [PATCH] some typos git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@127122 c90b9560-bf6c-de11-be94-00142212c4b1 --- reference/mysqli/functions/mysqli-field-count.xml | 6 +++--- reference/mysqli/functions/mysqli-query.xml | 4 ++-- reference/mysqli/functions/mysqli-real-query.xml | 4 ++-- reference/mysqli/functions/mysqli-use-result.xml | 4 ++-- 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/reference/mysqli/functions/mysqli-field-count.xml b/reference/mysqli/functions/mysqli-field-count.xml index a3d9d4da8b..7cdc7199fa 100644 --- a/reference/mysqli/functions/mysqli-field-count.xml +++ b/reference/mysqli/functions/mysqli-field-count.xml @@ -1,5 +1,5 @@ - + mysqli_field_count @@ -15,8 +15,8 @@ Returns the number of columns for the most recent query on the connection represented by the link parameter. This function can be useful when using the mysqli_store_result - to determine if the query should have produced a non-empty result set or - not without knowing the nature of the query. + function to determine if the query should have produced a non-empty result + set or not without knowing the nature of the query. diff --git a/reference/mysqli/functions/mysqli-query.xml b/reference/mysqli/functions/mysqli-query.xml index a07984e34c..19a1a649d9 100644 --- a/reference/mysqli/functions/mysqli-query.xml +++ b/reference/mysqli/functions/mysqli-query.xml @@ -1,5 +1,5 @@ - + mysqli_query @@ -18,7 +18,7 @@ act of performing a query against the database represented by the link parameter. Functionally, using this function is identical to calling mysqli_real_query - followed either mysqli_use_result or + followed either by mysqli_use_result or mysqli_store_result where query is the query string itself and resultmode is either the constant MYSQLI_USE_RESULT or MYSQLI_STORE_RESULT depending diff --git a/reference/mysqli/functions/mysqli-real-query.xml b/reference/mysqli/functions/mysqli-real-query.xml index 631d44c4aa..9ef2c43125 100644 --- a/reference/mysqli/functions/mysqli-real-query.xml +++ b/reference/mysqli/functions/mysqli-real-query.xml @@ -1,5 +1,5 @@ - + mysqli_real_query @@ -14,7 +14,7 @@ The mysqli_real_query function is used to execute - only a query against the database represnted by the link + only a query against the database represented by the link whose result can then be retrieved or stored using the mysqli_store_result or mysqli_use_result functions. diff --git a/reference/mysqli/functions/mysqli-use-result.xml b/reference/mysqli/functions/mysqli-use-result.xml index 92fdee8f19..6352db70eb 100644 --- a/reference/mysqli/functions/mysqli-use-result.xml +++ b/reference/mysqli/functions/mysqli-use-result.xml @@ -1,5 +1,5 @@ - + mysqli_use_result @@ -16,7 +16,7 @@ of a result set from the last query executed using the mysqli_real_query function on the database connection specified by the link parameter. Either this or the - mysqli_store_result must be called before the + mysqli_store_result function must be called before the results of a query can be retrieved, and one or the other must be called to prevent the next query on that database connection from failing.