Welcome Guest, Not a member yet? Register   Sign In
How to link image with anchor function
#32

[eluser]keld[/eluser]
I thought I would just add my two cents to this thread about embedding images in anchor tags
Code:
//Link + no title + Image + no alt
<?php echo anchor("products/product/".$featured['nameuri'], img('images/featured/'.$featured['photo_featured'])); ?>
outputs:
Code:
<a href="http://www.mysite.com/products/product/productname"><img src="http://www.mysite.com/images/featured/feat_105x145.png" alt=""/></a>
and
Code:
//Link + title + image + no alt
&lt;?php echo anchor("products/product/".$featured['nameuri'], img('images/featured/'.$featured['photo_featured']), 'title="'.$featured["name"].'"'); ?&gt;
outputs:
Code:
<a href="http://www.mysite.com/products/product/productname" title="My Title"><img src="http://www.mysite.com/images/featured/feat_105x145.png" alt=""/></a>
and
Code:
//Link + title + image + alt
&lt;?php echo anchor("products/product/".$featured['nameuri'], img(array('src'=>'images/featured/'.$featured['photo_featured'], 'alt'=>$featured["name"])), 'title="'.$featured["name"].'"'); ?&gt;
outputs:
Code:
<a href="http://www.mysite.com/products/product/productname" title="My Title"><img src="http://www.mysite.com/images/featured/feat_105x145.png" alt="My Alt"/></a>


Messages In This Thread
How to link image with anchor function - by El Forum - 11-18-2008, 05:25 AM
How to link image with anchor function - by El Forum - 11-18-2008, 05:56 AM
How to link image with anchor function - by El Forum - 11-18-2008, 06:36 AM
How to link image with anchor function - by El Forum - 11-19-2008, 01:01 AM
How to link image with anchor function - by El Forum - 11-19-2008, 01:53 AM
How to link image with anchor function - by El Forum - 11-19-2008, 01:54 AM
How to link image with anchor function - by El Forum - 11-19-2008, 02:17 AM
How to link image with anchor function - by El Forum - 06-01-2009, 01:21 PM
How to link image with anchor function - by El Forum - 09-24-2009, 11:22 PM
How to link image with anchor function - by El Forum - 03-09-2010, 08:50 PM
How to link image with anchor function - by El Forum - 03-09-2010, 09:09 PM
How to link image with anchor function - by El Forum - 03-09-2010, 09:20 PM
How to link image with anchor function - by El Forum - 03-09-2010, 09:24 PM
How to link image with anchor function - by El Forum - 03-09-2010, 09:36 PM
How to link image with anchor function - by El Forum - 03-09-2010, 09:51 PM
How to link image with anchor function - by El Forum - 03-09-2010, 11:23 PM
How to link image with anchor function - by El Forum - 03-09-2010, 11:29 PM
How to link image with anchor function - by El Forum - 03-10-2010, 12:03 AM
How to link image with anchor function - by El Forum - 03-10-2010, 12:05 AM
How to link image with anchor function - by El Forum - 03-10-2010, 12:17 AM
How to link image with anchor function - by El Forum - 03-10-2010, 12:22 AM
How to link image with anchor function - by El Forum - 03-10-2010, 12:44 AM
How to link image with anchor function - by El Forum - 03-10-2010, 09:10 AM
How to link image with anchor function - by El Forum - 03-10-2010, 02:00 PM
How to link image with anchor function - by El Forum - 03-10-2010, 02:13 PM
How to link image with anchor function - by El Forum - 03-10-2010, 02:18 PM
How to link image with anchor function - by El Forum - 03-10-2010, 11:05 PM
How to link image with anchor function - by El Forum - 03-29-2010, 07:14 AM
How to link image with anchor function - by El Forum - 12-02-2010, 08:38 PM
How to link image with anchor function - by El Forum - 12-03-2010, 12:25 AM
How to link image with anchor function - by El Forum - 02-23-2011, 09:52 AM
How to link image with anchor function - by El Forum - 04-05-2011, 05:16 PM



Theme © iAndrew 2016 - Forum software by © MyBB