我有这个我无法解决的问题。部分原因是我无法用正确的术语来解释它。我是新手,很抱歉这个笨拙的问题。
您可以在下面看到我的目标的概述。
我在我的 magento 中创建了一个自定义模块,它工作得很好。
使用这个我创建了一个http://www.phparrow.com/magento/magento-create-a-simple-module/
在我的产品页面中,我有一个链接
<a href = "http://www.example.com/magenaresh/index.php/hello/ "> Click Here </a>
当我单击单击此处时,它会重定向到http://www.example.com/magenaresh/index.php/hello/这个 URL 到这里一切正常...
但现在我想将 ProductID 与 URL 一起传递
为此,我这样写
<?php
$product_id = $this->getProduct()->getId();
echo $product_id;
?>
和
<a href = "http://www.example.com/magenaresh/index.php/hello/<?php echo $product_id ?> ">Click Here</a>
我再次点击Click Here
它的显示
我在这里做错什么了吗?
有任何想法吗 ?