diff options
Diffstat (limited to 'user_guide/database/results.html')
-rw-r--r-- | user_guide/database/results.html | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/user_guide/database/results.html b/user_guide/database/results.html index 81abc50f8..75f4357b4 100644 --- a/user_guide/database/results.html +++ b/user_guide/database/results.html @@ -84,6 +84,8 @@ Query Results echo $row->name;<br />
echo $row->body;<br />
}</code>
+
+ <p>The above <dfn>function</dfn> is an alias of <dfn>result_object()</dfn>.</p>
<p>If you run queries that might <strong>not</strong> produce a result, you are encouraged to test the result first:</p>
@@ -113,10 +115,6 @@ Query Results echo $row['name'];<br />
echo $row['body'];<br />
}</code>
-
- <h2>result('array')</h2>
-
- <p>Identical to <dfn>$this->db->result_array()</dfn>.</p>
<h2>row()</h2>
|