Quantcast
Channel: how to insert alt tag inside anchor tag in php? - Stack Overflow
Browsing all 5 articles
Browse latest View live

Answer by Parth Chavda for how to insert alt tag inside anchor tag in php?

after looking your code,you might be used "codeigniter" framework and below is a solution for your code.below code is showing how to add a attribute in img function.you need to just pass an array,that...

View Article



Answer by Prafulla Kumar Sahu for how to insert alt tag inside anchor tag in...

<div ><a title="your site" href="<?=site_url()?>"><?=img('logo.png',array('class'=>'logo'))?></a></div>You can not use alt attribute in anchor tag, instead use...

View Article

Answer by Juan Elfers for how to insert alt tag inside anchor tag in php?

Guess you are using some kind of framework, so the answer could not be correct.Please, try this:<div><a href="<?=site_url()?>"><?=img('logo.png', array('class'=>'logo',...

View Article

Answer by Kanishka Panamaldeniya for how to insert alt tag inside anchor tag...

If you are using code igniter framework you can do it like thisFrom The Codeigniter Documentation$image_properties = array('src' => 'images/picture.jpg','alt' => 'Me, demonstrating how to eat 4...

View Article

how to insert alt tag inside anchor tag in php?

<div ><a href="<?=site_url()?>"><?=img('logo.png',array('class'=>'logo'))?></a></div>I want to add an ALT TAG for logo.pngthanks

View Article

Browsing all 5 articles
Browse latest View live


Latest Images