diff options
author | Derek Allard <derek.allard@ellislab.com> | 2008-03-15 16:50:35 +0100 |
---|---|---|
committer | Derek Allard <derek.allard@ellislab.com> | 2008-03-15 16:50:35 +0100 |
commit | c892b751de11c3948aeb47365d92e8bb47c9787c (patch) | |
tree | ebdb3eb7c87600359de941dd7a27e213e8bb3329 /user_guide/database | |
parent | adf5b458bb93cb5ae3c6fc5dc38013f56fc64f07 (diff) |
fix an example
Diffstat (limited to 'user_guide/database')
-rw-r--r-- | user_guide/database/active_record.html | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/user_guide/database/active_record.html b/user_guide/database/active_record.html index b25167c00..d2c888ceb 100644 --- a/user_guide/database/active_record.html +++ b/user_guide/database/active_record.html @@ -96,8 +96,6 @@ is generated by each database adapter. It also allows for safer queries, since <br />
// Produces: SELECT * FROM mytable LIMIT 20, 10 (in MySQL. Other databases have slightly different syntax)</code>
-
-
<p>You'll notice that the above function is assigned to a variable named <kbd>$query</kbd>, which can be used to show the results:</p>
<code>$query = $this->db->get('mytable');<br />
|