//regular l function
<?php print l("what ever the text", "link url"); ?>
// l function with nofollow
<?php print l("what ever the text", "link url",
array("attributes"=>array("rel" => "nofollow"))); ?>
// adding img to l function
<?php print l("<img src='/sites/all/themes/zen/images/submit-buynow.gif'>",
"node/15", array("html"=> TRUE)); ?>
// adding img with no follow
<?php print l('<img src="/sites/all/themes/zen/images/submit-buynow.gif">',
'node/'. $data,
array('html' => TRUE, 'attributes' => array('rel' => 'nofollow'))); ?>