diff options
author | Derek Allard <derek.allard@ellislab.com> | 2008-04-24 15:12:46 +0200 |
---|---|---|
committer | Derek Allard <derek.allard@ellislab.com> | 2008-04-24 15:12:46 +0200 |
commit | 2f9559736080f8386fec1bb5a1d99bd9855e2a4d (patch) | |
tree | 75eaafe03060ea24179bd4bada0d729b2996be00 /user_guide/general/helpers.html | |
parent | 7c53be42a74b103774729281aef09ad505f3b611 (diff) |
changed guide examples to not use ?=, and instead use ?php echo
Diffstat (limited to 'user_guide/general/helpers.html')
-rw-r--r-- | user_guide/general/helpers.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/user_guide/general/helpers.html b/user_guide/general/helpers.html index 5569d9834..6d443b95f 100644 --- a/user_guide/general/helpers.html +++ b/user_guide/general/helpers.html @@ -111,7 +111,7 @@ This is done by opening the <var>application/config/autoload.php</var> file and <p>For example, to create a link using the <dfn>anchor()</dfn> function in one of your view files you would do this:</p>
-<code><?=anchor('blog/comments', 'Click Here');?></code>
+<code><?php echo anchor('blog/comments', 'Click Here');?></code>
<p>Where "Click Here" is the name of the link, and "blog/comments" is the URI to the controller/function you wish to link to.</p>
|