我有这个代码:
echo '<form method="post" class="product" action="index.php" id="addtocartproduct<?php echo $products->virtuemart_product_id ?>">';
我必须在 echo 中使用 echo 并且我必须在这一行中永远不要使用 php。我怎样才能编辑这一行并使它像:
echo '<form method="post" class="product" action="index.php" id="addtocartproduct echo $products->virtuemart_product_id ">';
编辑:感谢每一位非常有用的帮助。现在我有另一个问题。我能用这条线做什么:
echo'<input type="hidden" class="pname" value="<?php echo $product->product_name ?>">';