ARUN
ARUN

Reputation: 109

How to implement in the cake PHP for Nested tags?

I wanna know how to do the CakePHP code for,

<a href="#">Send <span class="glyphicon glyphicon-send"></span></a>

The Icon is not visible in the output page (I Don't know the correct method).

If I give as <a href="#" class="glyphicon glyphicon-send">Send</a> the font changes obviously and the icon comes to the front and text goes after that.

So, please give me a solution, Guys !

Thanks !

Upvotes: 0

Views: 44

Answers (1)

justrohu
justrohu

Reputation: 589

Hi Arun try this one ..

                echo $this->Html->link(
                    '<span class="glyphicon glyphicon-send"></span>',
                    '#',
                    array(
                     'escape' => false,
                    )
                 );

Upvotes: 1

Related Questions