canfone Posted July 22, 2003 Posted July 22, 2003 Can someone please take a look at this syntax and let me know where i am going wrong.... <?php echo '<AREA shape=RECT' . ' coords=125,5,177,43 ' . 'href=' . tep_href_link(FILENAME_ACCOUNT, ,SSL) . '>; ?> Thanks... I am changing the header.php with an image map... I keep getting errors. ------------------------ Chief Web Developer http://Canfone.com https://SecureLogoHosting.com
Guest Posted July 22, 2003 Posted July 22, 2003 something like this echo '<AREA shape="RECT" coords="125,5,177,43" href="' . tep_href_link(FILENAME_ACCOUNT,'' ,'SSL') . '">';
Dave_L Posted July 22, 2003 Posted July 22, 2003 Or if you want to make it easier to read: <?php $url = tep_href_link(FILENAME_ACCOUNT, '', 'SSL'); echo "<area shape='rect' coords='125,5,177,43' href='$url' />"; ?>
Recommended Posts
Archived
This topic is now archived and is closed to further replies.