jakentus
jakentus

Reputation: 896

Codeigniter anchor around div tag

How can we use function anchor of codeigniter for div tag?

I got div around which I want to put anchor(uri segments, text, attributes)

in pure html it looks like this:

    <a class="a_services" href="http://justinbieber.com">
        <div id="seminar">Hello world</div>
    </a>

Upvotes: 1

Views: 1702

Answers (1)

Ryan Kempt
Ryan Kempt

Reputation: 4209

You can include code in the second parameter.

echo anchor('http://justinbieber.com', '<div id="seminar">Hello world</div>', 'class="a_services"');

Upvotes: 3

Related Questions