I want to be able to add either Email This Page text or an icon that would appear on the bottom of a product page on my website.
Is there specific html that would need to be used? It would have to copy the URL and add something like a text box to enter an email address and of course have protection from spambots. How would I go about adding something such as this?
You need to use some dynamic code to achieve that.
<?php
$pageURL = 'http';
if ($_SERVER["HTTPS"] == "on") {$pageURL .= "s";}
$pageURL .= "://";
if ($_SERVER["SERVER_PORT"] != "80") {
$pageURL .= $_SERVER["SERVER_NAME"].":".$_SERVER["SERVER_PORT"].$_SERVER["REQUEST_URI"];
} else {
$pageURL .= $_SERVER["SERVER_NAME"].$_SERVER["REQUEST_URI"];
}
$pageURL;
?>
You can use $PageURL that contains the link to the current page.
Bookmarks