in my project I want to add image to show the link in which the my code is return image if I use
<a href="<?= site_url('login')?>">
<img src="<?= base_url();?>images/login.png"
width="32"
height="32"
border="0" />
</a>
echo in php but when I use this it is not able to return image insead what is the method of base path.
<a href="<?php echo site_url('login')?>">
<img src="<?php echo base_url();?>images/login.png"
width="32"
height="32"
border="0" />
</a>