summaryrefslogtreecommitdiffstats
path: root/user_guide/general
diff options
context:
space:
mode:
authorDerek Allard <derek.allard@ellislab.com>2008-04-24 15:12:46 +0200
committerDerek Allard <derek.allard@ellislab.com>2008-04-24 15:12:46 +0200
commit2f9559736080f8386fec1bb5a1d99bd9855e2a4d (patch)
tree75eaafe03060ea24179bd4bada0d729b2996be00 /user_guide/general
parent7c53be42a74b103774729281aef09ad505f3b611 (diff)
changed guide examples to not use ?=, and instead use ?php echo
Diffstat (limited to 'user_guide/general')
-rw-r--r--user_guide/general/helpers.html2
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>&lt;?=anchor('blog/comments', 'Click Here');?&gt;</code>
+<code>&lt;?php echo anchor('blog/comments', 'Click Here');?&gt;</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>