我在tellform表单的.php文件中有以下几行:
// Gets the current URL
function CurrentPageURL()
{
$pageURL = $_SERVER['HTTPS'] == 'on' ? 'https://' : 'http://';
$pageURL .= $_SERVER['SERVER_PORT'] != '80' ? $_SERVER["SERVER_NAME"].":".$_SERVER["SERVER_PORT"].$_SERVER["REQUEST_URI"] : $_SERVER['SERVER_NAME'] . $_SERVER['REQUEST_URI'];
return $pageURL;
}
$url = CurrentPageURL();
在下面的某个地方:
$message = "Hi! blahblahblah : $url";
此外,在 .tpl 文件中,我有以下行:
<form id="tellform" action="tellafriend/processTell.php" method="post">
一切正常,除了发送的电子邮件包含 /tellafriend/processTell.php 的链接,而不是浏览器中显示的产品的实际链接。我应该怎么做才能纠正这个问题?谢谢!
编辑 1 这里是关于提交电子邮件的 .js 部分:
// Use Ajax to send everything to processTell.php
submitHandler: function(form) {
$("#send").attr("value", "Slanje...");
$(form).ajaxSubmit({
success: function(responseText, statusText, xhr, $form) {
$(form).slideUp("fast");
$("#response-tell").html(responseText).hide().slideDown("fast");
}
});
return false;
}
解决了所以,感谢IMSoP,我解决了这个问题。他解释了问题出在哪里,所以最后我明白了。我完全删除了这些function CurrentPageURL
行,并在相关表单的 .tpl 页面中插入了以下代码:
<input type="hidden" name="urlToPutInEmail" value="<?php echo $this->url->link('product/product', 'product_id=' . $product_id); ?>" />
在 tellform.php 文件中,我调用了 varible $urlToPutInEmail
。简单的是......注意,这是在opencart框架上工作的。
再次感谢 IMSoP!