summaryrefslogtreecommitdiffstats
path: root/user_guide/database
diff options
context:
space:
mode:
authorDerek Allard <derek.allard@ellislab.com>2008-03-15 16:50:35 +0100
committerDerek Allard <derek.allard@ellislab.com>2008-03-15 16:50:35 +0100
commitc892b751de11c3948aeb47365d92e8bb47c9787c (patch)
treeebdb3eb7c87600359de941dd7a27e213e8bb3329 /user_guide/database
parentadf5b458bb93cb5ae3c6fc5dc38013f56fc64f07 (diff)
fix an example
Diffstat (limited to 'user_guide/database')
-rw-r--r--user_guide/database/active_record.html2
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 />