summaryrefslogtreecommitdiffstats
path: root/user_guide/database
diff options
context:
space:
mode:
authorDerek Allard <derek.allard@ellislab.com>2008-03-14 12:49:10 +0100
committerDerek Allard <derek.allard@ellislab.com>2008-03-14 12:49:10 +0100
commitadf5b458bb93cb5ae3c6fc5dc38013f56fc64f07 (patch)
tree78f2ca0e486d5415c594376e838fc0688178a88c /user_guide/database
parentea90622bc4db70b580bfc6bc8dec2b1e5c05e9c7 (diff)
source fixes
Diffstat (limited to 'user_guide/database')
-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>