Frage

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>
War es hilfreich?

Lösung

You can include code in the second parameter.

echo anchor('http://justinbieber.com', '<div id="seminar">Hello world</div>', 'class="a_services"');
Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top