ltempest Posted April 7, 2006 Share Posted April 7, 2006 HELP!I'm trying to cobble together a free 'email this page' code into my Joomla Virtuemart page. I can get the icon displayed but cannot get is to process the popup window for the user to enter his email address.echo "<td><a href=\"javascript:popUp('$mosConfig_live_site/emailpage/friend.php?id=".$PHP_SELF."\"><img src=\"http://www.oec4x4.com/images/M_images/emailButton.png\" width=\"32\" height=\"32\" alt=\"\" align=\"middle\" name=\"PDF\" border=\"0\" /></a></td>";I think the problem lies in the id=".$PHP_SELF."\" part. I need this to be a variable as this icon will appear on different pages so the page id will differ.Can anyone help?ThanksLee Link to comment https://forums.phpfreaks.com/topic/6806-whats-wrong-with-my-code/ Share on other sites More sharing options...
ToonMariner Posted April 7, 2006 Share Posted April 7, 2006 tryecho "<td><a href=\"javascript:popUp('" . $mosConfig_live_site . "/emailpage/friend.php?id=".$PHP_SELF."\"><img src=\"http://www.oec4x4.com/images/M_images/emailButton.png\" width=\"32\" height=\"32\" alt=\"\" align=\"middle\" name=\"PDF\" border=\"0\" /></a></td>"; Link to comment https://forums.phpfreaks.com/topic/6806-whats-wrong-with-my-code/#findComment-24743 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.