我有一个购物车,我想要一个卷曲功能将产品添加到购物车,当用户点击链接“添加到购物车”时添加它,但我尝试了许多卷曲功能,购物车仍然是空的:
我的代码:
$url = 'The href of the add to cart button when click on it the product added to the cart';
$curl = curl_init();
curl_setopt($curl, CURLOPT_URL, $url);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
curl_setopt($curl, CURLOPT_HEADER, false);
$data = curl_exec($curl);
curl_close($curl);
答案 0 :(得分:0)
如果你不提供实际的地址,这很难。也许您必须在登录后保存cookie然后使用CURLOPT_COOKIE?