Hi,
I'm looking for the proper syntax to place php inside an image map directive for a hyperlink, as in:
<area shape="rect" coords="126,20,174,67" href="my_account.php">
Where, exactly, do I put the following in the imagemap to replace the real file:
<?php echo '<a href="' . php_href_link(FILENAME_ACCOUNT, '', 'SSL') . '">
Does this work, for example:
<area shape="rect" coords="126,20,174,67" href="<?php echo '<a href=". php_href_link(FILENAME_ACCOUNT, '', 'SSL') . '">
Any help would be much appreciated.