diff options
author | Derek Allard <derek.allard@ellislab.com> | 2008-05-07 17:36:59 +0200 |
---|---|---|
committer | Derek Allard <derek.allard@ellislab.com> | 2008-05-07 17:36:59 +0200 |
commit | 55bc1a81545b3d8cc854a2eb77018ff1c54cec23 (patch) | |
tree | af21c3c63ce1650e4381e2d5745ff9241d99aee1 /user_guide/general | |
parent | 6a857c3815458df3e2824b047e5e17e87142c829 (diff) |
changed an absolute path relative
Diffstat (limited to 'user_guide/general')
-rw-r--r-- | user_guide/general/models.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/user_guide/general/models.html b/user_guide/general/models.html index 7b2d6865f..c0d972683 100644 --- a/user_guide/general/models.html +++ b/user_guide/general/models.html @@ -116,7 +116,7 @@ class Blogmodel extends Model {<br /> }</code>
<p>Note: The functions in the above example use the <a href="../database/active_record.html">Active Record</a> database functions.</p>
-<p class="important"><strong>Note:</strong> For the sake of simplicity in this example we're using $_POST directly. This is generally bad practice, and a more common approach would be to use the <a href="http://codeigniter.com/user_guide/libraries/input.html">Input Class</a> $this->input->post('title')</p>
+<p class="important"><strong>Note:</strong> For the sake of simplicity in this example we're using $_POST directly. This is generally bad practice, and a more common approach would be to use the <a href="../libraries/input.html">Input Class</a> $this->input->post('title')</p>
<h2><a name="anatomy"></a>Anatomy of a Model</h2>
<p>Model classes are stored in your <dfn>application/models/</dfn> folder. They can be nested within sub-folders if you
|