Using the CakePHP Html helper, how does one go about inserting a line break in the anchor text?

<?php echo $this->Html->link("My Anchor Text \n with new line", '/mycontroller/myaction'); ?>

The above doesn't work.

Thanks...

link|improve this question
feedback

1 Answer

up vote 3 down vote accepted

You have to use the br tag for this purpose:

<?php echo $this->Html->link("My Anchor Text <br /> with new line", '/mycontroller/myaction', array('escape' => false)); ?>
link|improve this answer
Thanks - I tried that and it showed up as the literal string "My Anchor Text <br /> with new line". – LCR Sep 13 '11 at 16:15
it's because you forgot this: array('escape' => false) – kaklon Sep 13 '11 at 21:06
Ah. I didn't use the scroller! Thanks kaklon for pointing that out, and thanks dhofstet for the answer. – LCR Sep 14 '11 at 16:07
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.