When I programmaticly set a Magento item attribute to data that the user provided, do I need to SQL escape/sanitize that data or does Magento take care of doing so?
Thanks,
Ben
-- Here's a code example:
$cart = Mage::getSingleton('checkout/cart');
$cart->addProduct($product, array('qty' => 1, 'options' => array(5 =>$rawDataFromPost)));
$cart->save();