Skip to content

Instantly share code, notes, and snippets.

@joshcarlson
joshcarlson / magento-add-to-cart-from-query-string.php
Created April 11, 2015 15:55
Magento add to cart from url, useful for email promos or add to cart from offsite links
<?php
/**
* add to cart from url, useful for email promos
* based on http://www.magentocommerce.com/wiki/4_-_themes_and_template_customization/catalog/adding_a_product_to_the_cart_via_querystring
* which no longer works because of session validation of form_key
* usage: link to add.php?product=[id]&qty=[qty]
*/
require 'app/Mage.php';
Mage::app();