From 2f9559736080f8386fec1bb5a1d99bd9855e2a4d Mon Sep 17 00:00:00 2001 From: Derek Allard Date: Thu, 24 Apr 2008 13:12:46 +0000 Subject: changed guide examples to not use ?=, and instead use ?php echo --- user_guide/general/helpers.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'user_guide/general') 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 application/config/autoload.php file and

For example, to create a link using the anchor() function in one of your view files you would do this:

-<?=anchor('blog/comments', 'Click Here');?> +<?php echo anchor('blog/comments', 'Click Here');?>

Where "Click Here" is the name of the link, and "blog/comments" is the URI to the controller/function you wish to link to.

-- cgit v1.2.3-24-g4f1b