changed guide examples to not use ?=, and instead use ?php echo
diff --git a/user_guide/general/helpers.html b/user_guide/general/helpers.html
index 5569d98..6d443b9 100644
--- a/user_guide/general/helpers.html
+++ b/user_guide/general/helpers.html
@@ -111,7 +111,7 @@
<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>