diff options
author | Kyle Farris <kylefarris@gmail.com> | 2011-08-31 17:57:35 +0200 |
---|---|---|
committer | Kyle Farris <kylefarris@gmail.com> | 2011-08-31 17:57:35 +0200 |
commit | c4234c1ad57cf0b4545c6bc553ce3c9781625505 (patch) | |
tree | 0eaa14001b4482f4b97a4a1476f16ccd33fba1eb /user_guide/database | |
parent | 2de2fa022253597c8f5c807218be3aa05fac340e (diff) |
Fixed some formatting and stuff.
Diffstat (limited to 'user_guide/database')
-rw-r--r-- | user_guide/database/active_record.html | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/user_guide/database/active_record.html b/user_guide/database/active_record.html index 874dda58e..aa888d28f 100644 --- a/user_guide/database/active_record.html +++ b/user_guide/database/active_record.html @@ -337,6 +337,7 @@ $this->db->or_where('id >', $id); <li><strong>Simple key/value method:</strong> <code>$this->db->like('title', 'match'); + <br /><br />// Produces: WHERE title LIKE '%match%' </code> <p>If you use multiple function calls they will be chained together with <var>AND</var> between them:</p> |