summaryrefslogtreecommitdiffstats
path: root/user_guide/database/active_record.html
diff options
context:
space:
mode:
Diffstat (limited to 'user_guide/database/active_record.html')
-rw-r--r--user_guide/database/active_record.html10
1 files changed, 2 insertions, 8 deletions
diff --git a/user_guide/database/active_record.html b/user_guide/database/active_record.html
index 2b46f81aa..b25167c00 100644
--- a/user_guide/database/active_record.html
+++ b/user_guide/database/active_record.html
@@ -64,9 +64,7 @@ CodeIgniter does not require that each database table be its own class file. It
<p>Beyond simplicity, a major benefit to using the Active Record features is that it allows you to create database independent applications, since the query syntax
is generated by each database adapter. It also allows for safer queries, since the values are escaped automatically by the system.</p>
-<p class="important"><strong>Note:</strong> If you intend to write your own queries you can disable this class in your database config file, allowing the core database library and adapter to utilize fewer resources.</p>
-
-<br />
+<p class="important"><strong>Note:</strong> If you intend to write your own queries you can disable this class in your database config file, allowing the core database library and adapter to utilize fewer resources.<br /></p>
<ul>
<li><a href="#select">Selecting Data</a></li>
@@ -77,11 +75,7 @@ is generated by each database adapter. It also allows for safer queries, since
<li><a href="#caching">Active Record Caching</a></li>
</ul>
-
-
-
-<a name="select">&nbsp;</a>
-<h1>Selecting Data</h1>
+<h1><a name="select">&nbsp;</a>Selecting Data</h1>
<p>The following functions allow you to build SQL <strong>SELECT</strong> statements.</p>