问号后我需要add_cart
的值吗?
echo "<a href='index.php?add_cart=<?php echo $pro_id; ?>' name='shto' class='sp' '><button style='float:right;'>Cart</button></a> ";
像这样的东西
$value = add_cart;
答案 0 :(得分:2)
尝试类似:
$value = 4544545; //the item number
echo "<a href='index.php?add_cart=$value' name='shto' class='sp' '><button style='float:right;'>Cart</button></a> ";
在index.php中,您可以获得以下值:
$valueFromAddCart = $_GET['add_cart'];
答案 1 :(得分:0)
使用$_GET
示例:
$value = $_GET['add_cart'];