Вопрос

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>
Это было полезно?

Решение

You can include code in the second parameter.

echo anchor('http://justinbieber.com', '<div id="seminar">Hello world</div>', 'class="a_services"');
Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top