在单个cookie中存储多个输入 我的购物车
20000 usd
<p>30000 usd</p>
<form name="woman1">
<input type="number" min="0" style="width:80px;" name="woman2"/>
<input type="submit" value="Add To Cart" onclick="add_to_cart()"/>
</form>
10000 usd
<form name="baby1" >
<input type="number" min="0" style="width:80px;" name="baby2"/>
<input type="submit" value="Add To Cart" onclick="add_to_cart();"/>
</form>
答案 0 :(得分:0)
如果您尝试在Cookie中存储信息,请使用Javascript或PHP。
在Javascript中,你通过这样做来制作一个cookie:
document.cookie = "var_name=value; expires=Tells when the cookie should expire";
在PHP中它将是:
setcookie($cookie_name, $cookie_value, when_to_expire);
注意:过期是可选的。 此外,setcookie函数需要放在任何HTML之前。