diff options
-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 />
|