diff options
Diffstat (limited to 'user_guide/database/queries.html')
-rw-r--r-- | user_guide/database/queries.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/user_guide/database/queries.html b/user_guide/database/queries.html index 954570c70..8575b2534 100644 --- a/user_guide/database/queries.html +++ b/user_guide/database/queries.html @@ -85,7 +85,7 @@ It DOES NOT return a database result set, nor does it set the query timer, or co It simply lets you submit a query. Most users will rarely use this function.</p>
-<h1><br />Escaping Queries</h1>
+<h1>Escaping Queries</h1>
<p>It's a very good security practice to escape your data before sumbiting it into your database.
Code Igniter has two functions that help you do this:</p>
@@ -107,7 +107,7 @@ Most of the time you'll use the above function rather then this one. Use the fun </ol>
-<h1><br />Query Bindings</h1>
+<h1>Query Bindings</h1>
<p>Bindings enable you to simplify your query syntax by letting the system put the queries together for you. Consider the following example:</p>
|