Re: Element $html->link problem

2009-07-27 Thread mike karthauser
You can also do it by adding 'escape' =>'false' in you link array Mike Karthauser Brightstorm limited Tel: 07939252144 On 27 Jul 2009, at 12:27, Günther Theilen wrote: > > Hi, > > you should add the fifth parameter to switch off escaping. > http://api.cakephp.org/class/html-helper#method-HtmlH

Re: Element $html->link problem

2009-07-27 Thread Günther Theilen
Hi, you should add the fifth parameter to switch off escaping. http://api.cakephp.org/class/html-helper#method-HtmlHelperlink Something like this: e($html->link($html->tag('b','Home'),array ('controller'=>'controlls','action'=>'index'), null, null, false)); Regards Guenther DatacenterHellas w

Element $html->link problem

2009-07-27 Thread DatacenterHellas
Hello all. I try to create an Html / Css based menu with CakePHP What I'm doing to create the menu elements is that : link($html->tag('b','Home'),array ('controller'=>'controlls','action'=>'index'))); ?> And what I get is that Home instead of Home with bold What can I do ? ? ? Kind regard