diff options
author | Derek Allard <derek.allard@ellislab.com> | 2007-07-05 01:54:32 +0200 |
---|---|---|
committer | Derek Allard <derek.allard@ellislab.com> | 2007-07-05 01:54:32 +0200 |
commit | c644128fdd49a47d791240e0e38b54cd22412bc5 (patch) | |
tree | fd2135d295c103395f5d0bd89056b0e798cfcdb3 /user_guide/database/active_record.html | |
parent | 691010e72ec7fb4a05740332a10b5f046a82c666 (diff) |
fixed validation errors... about a zillion of em.
Diffstat (limited to 'user_guide/database/active_record.html')
-rw-r--r-- | user_guide/database/active_record.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/user_guide/database/active_record.html b/user_guide/database/active_record.html index 5d58f6bd4..573c67408 100644 --- a/user_guide/database/active_record.html +++ b/user_guide/database/active_record.html @@ -369,7 +369,7 @@ The second parameter lets you set the direction of the result. Options are <kbd <h2>$this->db->limit();</h2>
-<p>Lets you limit the number of rows you would like returned by the query:
+<p>Lets you limit the number of rows you would like returned by the query:</p>
<code>
$this->db->limit(10);<br />
@@ -565,7 +565,7 @@ $this->db->delete('mytable', array('id' => $id)); // WHERE id = $id</code>
<p>The first parameter is the table name, the second is the where clause. You can also use the <dfn>where()</dfn> or <dfn>orwhere()</dfn> functions instead of passing
-the data to the second parameter of the function:
+the data to the second parameter of the function:</p>
<code>
$this->db->where('id', $id);<br />
@@ -603,7 +603,7 @@ Previous Topic: <a href="helpers.html">Query Helper Functions</a> <a href="#top">Top of Page</a> ·
<a href="../index.html">User Guide Home</a> ·
Next Topic: <a href="transactions.html">Transactions</a>
-<p>
+</p>
<p><a href="http://www.codeigniter.com">CodeIgniter</a> · Copyright © 2007 · <a href="http://ellislab.com/">Ellislab, Inc.</a></p>
</div>
|