Question

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>
Was it helpful?

Solution

You can include code in the second parameter.

echo anchor('http://justinbieber.com', '<div id="seminar">Hello world</div>', 'class="a_services"');
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top