<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Programatically add bundle product to cart in Magento</title>
	<atom:link href="http://inchoo.net/ecommerce/magento/programatically-add-bundle-product-to-cart-n-magento/feed/" rel="self" type="application/rss+xml" />
	<link>http://inchoo.net/ecommerce/magento/programatically-add-bundle-product-to-cart-n-magento/</link>
	<description>Magento Design and Magento Development Professionals - Inchoo</description>
	<lastBuildDate>Fri, 10 Feb 2012 19:34:16 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: dgento</title>
		<link>http://inchoo.net/ecommerce/magento/programatically-add-bundle-product-to-cart-n-magento/comment-page-1/#comment-23254</link>
		<dc:creator>dgento</dc:creator>
		<pubDate>Tue, 25 Oct 2011 16:47:09 +0000</pubDate>
		<guid isPermaLink="false">http://inchoo.net/?p=3567#comment-23254</guid>
		<description>Just like to share the solution: rewrite cart controller.

under addAction()

        $params1[&#039;qty&#039;] = 1;
        $cart = Mage::getSingleton(&#039;checkout/cart&#039;);
        $product1 = new   Mage_Catalog_Model_Product();
        $product1-&gt;load(194);

After this, follow magento default code.
add following before saving $cart

$cart-&gt;addProduct($product1, $params1);

//This adds new product to cart along with the product that is clicked to add to cart.</description>
		<content:encoded><![CDATA[<p>Just like to share the solution: rewrite cart controller.</p>
<p>under addAction()</p>
<p>        $params1['qty'] = 1;<br />
        $cart = Mage::getSingleton(&#8216;checkout/cart&#8217;);<br />
        $product1 = new   Mage_Catalog_Model_Product();<br />
        $product1-&gt;load(194);</p>
<p>After this, follow magento default code.<br />
add following before saving $cart</p>
<p>$cart-&gt;addProduct($product1, $params1);</p>
<p>//This adds new product to cart along with the product that is clicked to add to cart.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: dgento</title>
		<link>http://inchoo.net/ecommerce/magento/programatically-add-bundle-product-to-cart-n-magento/comment-page-1/#comment-23253</link>
		<dc:creator>dgento</dc:creator>
		<pubDate>Tue, 25 Oct 2011 16:29:36 +0000</pubDate>
		<guid isPermaLink="false">http://inchoo.net/?p=3567#comment-23253</guid>
		<description>I am trying to add one more product to cart when add to cart button is clicked. But the code mentioned here only works in template, not in controller. any idea about this not happening?

Thanks</description>
		<content:encoded><![CDATA[<p>I am trying to add one more product to cart when add to cart button is clicked. But the code mentioned here only works in template, not in controller. any idea about this not happening?</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Milen Petrov</title>
		<link>http://inchoo.net/ecommerce/magento/programatically-add-bundle-product-to-cart-n-magento/comment-page-1/#comment-22266</link>
		<dc:creator>Milen Petrov</dc:creator>
		<pubDate>Tue, 09 Aug 2011 19:43:42 +0000</pubDate>
		<guid isPermaLink="false">http://inchoo.net/?p=3567#comment-22266</guid>
		<description>Sorry, in my previous post I used &quot;[&quot; and &quot;]&quot; for bundle_option but for some reason it was ignored.
Let me try to put the whole URL again in a different way.

&quot;http://yoursite.com/checkout/cart/add/product/bundle_id/?bundle_option[X]=a&amp;bundle_option_qty[X]=aa&amp;bundle_option[Y]=b&amp;bundle_option_qty[Y]=bb&amp;bundle_option[Z]=c&amp;bundle_option_qty[Z]=cc&amp;qty=number_of_bundles_to_be_added&quot;</description>
		<content:encoded><![CDATA[<p>Sorry, in my previous post I used &#8220;[" and "]&#8221; for bundle_option but for some reason it was ignored.<br />
Let me try to put the whole URL again in a different way.</p>
<p>&#8220;http://yoursite.com/checkout/cart/add/product/bundle_id/?bundle_option[X]=a&amp;bundle_option_qty[X]=aa&amp;bundle_option[Y]=b&amp;bundle_option_qty[Y]=bb&amp;bundle_option[Z]=c&amp;bundle_option_qty[Z]=cc&amp;qty=number_of_bundles_to_be_added&#8221;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Milen Petrov</title>
		<link>http://inchoo.net/ecommerce/magento/programatically-add-bundle-product-to-cart-n-magento/comment-page-1/#comment-22265</link>
		<dc:creator>Milen Petrov</dc:creator>
		<pubDate>Tue, 09 Aug 2011 19:38:08 +0000</pubDate>
		<guid isPermaLink="false">http://inchoo.net/?p=3567#comment-22265</guid>
		<description>In addition to adding bundles programatically it is aslo possible to do it via URL - again including the bundle items Qty.
The URL should look like:
http://yoursite.com/checkout/cart/add/product/[bundle_id]/?bundle_option[X]=a&amp;bundle_option_qty[X]=aa&amp;bundle_option[Y]=b&amp;bundle_option_qty[Y]=bb&amp;bundle_option[Z]=c&amp;bundle_option_qty[Z]=cc&amp;qty=[number_of_bundles_to_be_added]</description>
		<content:encoded><![CDATA[<p>In addition to adding bundles programatically it is aslo possible to do it via URL &#8211; again including the bundle items Qty.<br />
The URL should look like:<br />
<a href="http://yoursite.com/checkout/cart/add/product/bundle_id/?bundle_optionX=a&#038;bundle_option_qtyX=aa&#038;bundle_optionY=b&#038;bundle_option_qtyY=bb&#038;bundle_optionZ=c&#038;bundle_option_qtyZ=cc&#038;qty=number_of_bundles_to_be_added" rel="nofollow">http://yoursite.com/checkout/cart/add/product/bundle_id/?bundle_optionX=a&#038;bundle_option_qtyX=aa&#038;bundle_optionY=b&#038;bundle_option_qtyY=bb&#038;bundle_optionZ=c&#038;bundle_option_qtyZ=cc&#038;qty=number_of_bundles_to_be_added</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Milen Petrov</title>
		<link>http://inchoo.net/ecommerce/magento/programatically-add-bundle-product-to-cart-n-magento/comment-page-1/#comment-22260</link>
		<dc:creator>Milen Petrov</dc:creator>
		<pubDate>Tue, 09 Aug 2011 16:01:11 +0000</pubDate>
		<guid isPermaLink="false">http://inchoo.net/?p=3567#comment-22260</guid>
		<description>Today I spent some hours breaking my head to discover how can I add items Qty. Finaly.... Yes, it is possible to add bundle items Qty. Just use this:
[code]
$params = array(
    &#039;product&#039; =&gt; 164,
    &#039;related_product&#039; =&gt; null,
    &#039;bundle_option&#039; =&gt; array(
        21 =&gt; 58,
        20 =&gt; 55,
        11 =&gt; 28,
        12 =&gt; array(
            0 =&gt; 31,
        ),
        13 =&gt; array(
            0 =&gt; 32,
            1 =&gt; 35,
        ),
    ),
    &#039;bundle_option_qty&#039; =&gt; array(
         21 =&gt;2
    ),
    &#039;options&#039; =&gt; array(
        3 =&gt; &#039;olaaaaaaaa&#039;,
    ),
    &#039;qty&#039; =&gt; 2,
);
[/code]
It will add 2 items for option_id 21.
Hope this helps.</description>
		<content:encoded><![CDATA[<p>Today I spent some hours breaking my head to discover how can I add items Qty. Finaly&#8230;. Yes, it is possible to add bundle items Qty. Just use this:</p>
<pre class="brush: plain; title: ; notranslate">
$params = array(
    'product' =&gt; 164,
    'related_product' =&gt; null,
    'bundle_option' =&gt; array(
        21 =&gt; 58,
        20 =&gt; 55,
        11 =&gt; 28,
        12 =&gt; array(
            0 =&gt; 31,
        ),
        13 =&gt; array(
            0 =&gt; 32,
            1 =&gt; 35,
        ),
    ),
    'bundle_option_qty' =&gt; array(
         21 =&gt;2
    ),
    'options' =&gt; array(
        3 =&gt; 'olaaaaaaaa',
    ),
    'qty' =&gt; 2,
);
</pre>
<p>It will add 2 items for option_id 21.<br />
Hope this helps.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Fida</title>
		<link>http://inchoo.net/ecommerce/magento/programatically-add-bundle-product-to-cart-n-magento/comment-page-1/#comment-21322</link>
		<dc:creator>Fida</dc:creator>
		<pubDate>Fri, 03 Jun 2011 08:47:22 +0000</pubDate>
		<guid isPermaLink="false">http://inchoo.net/?p=3567#comment-21322</guid>
		<description>thanks so much for this great article. I would like to know how i can specify the qty of bundle  option products, for example if i permission for user defined qty while choosing the products

Kindly waitng for your suggestion!!!!!!!!!!!!!</description>
		<content:encoded><![CDATA[<p>thanks so much for this great article. I would like to know how i can specify the qty of bundle  option products, for example if i permission for user defined qty while choosing the products</p>
<p>Kindly waitng for your suggestion!!!!!!!!!!!!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Fida</title>
		<link>http://inchoo.net/ecommerce/magento/programatically-add-bundle-product-to-cart-n-magento/comment-page-1/#comment-21290</link>
		<dc:creator>Fida</dc:creator>
		<pubDate>Wed, 01 Jun 2011 11:42:20 +0000</pubDate>
		<guid isPermaLink="false">http://inchoo.net/?p=3567#comment-21290</guid>
		<description>Hello

Is there any possibility in magento 1.5 to get  the bundled product available in cart page. if so i need to show the bundled product available for that product in a pop up and the user can edit the qty from there too.

Waiting for your suggestion!!!!!!!!!!!!!!</description>
		<content:encoded><![CDATA[<p>Hello</p>
<p>Is there any possibility in magento 1.5 to get  the bundled product available in cart page. if so i need to show the bundled product available for that product in a pop up and the user can edit the qty from there too.</p>
<p>Waiting for your suggestion!!!!!!!!!!!!!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jon</title>
		<link>http://inchoo.net/ecommerce/magento/programatically-add-bundle-product-to-cart-n-magento/comment-page-1/#comment-20371</link>
		<dc:creator>Jon</dc:creator>
		<pubDate>Wed, 13 Apr 2011 04:14:55 +0000</pubDate>
		<guid isPermaLink="false">http://inchoo.net/?p=3567#comment-20371</guid>
		<description>Hey Mike, you are correct, with Magento versions less than 1.5 you can not. Version 1.5 adds the ability to do so though.</description>
		<content:encoded><![CDATA[<p>Hey Mike, you are correct, with Magento versions less than 1.5 you can not. Version 1.5 adds the ability to do so though.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike D</title>
		<link>http://inchoo.net/ecommerce/magento/programatically-add-bundle-product-to-cart-n-magento/comment-page-1/#comment-20349</link>
		<dc:creator>Mike D</dc:creator>
		<pubDate>Mon, 11 Apr 2011 20:36:43 +0000</pubDate>
		<guid isPermaLink="false">http://inchoo.net/?p=3567#comment-20349</guid>
		<description>Hey,
I have read a few of your posts on bundled products and was wondering if you might know a way to add them to an order that is being created in the admin. This does not seem possible.</description>
		<content:encoded><![CDATA[<p>Hey,<br />
I have read a few of your posts on bundled products and was wondering if you might know a way to add them to an order that is being created in the admin. This does not seem possible.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Charlie</title>
		<link>http://inchoo.net/ecommerce/magento/programatically-add-bundle-product-to-cart-n-magento/comment-page-1/#comment-9431</link>
		<dc:creator>Charlie</dc:creator>
		<pubDate>Wed, 24 Nov 2010 16:37:46 +0000</pubDate>
		<guid isPermaLink="false">http://inchoo.net/?p=3567#comment-9431</guid>
		<description>Thanks Mage Nation!  That solution to &quot;Stock item for product is not valid&quot; worked wonders for me.</description>
		<content:encoded><![CDATA[<p>Thanks Mage Nation!  That solution to &#8220;Stock item for product is not valid&#8221; worked wonders for me.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ASHA</title>
		<link>http://inchoo.net/ecommerce/magento/programatically-add-bundle-product-to-cart-n-magento/comment-page-1/#comment-8943</link>
		<dc:creator>ASHA</dc:creator>
		<pubDate>Thu, 04 Nov 2010 13:19:55 +0000</pubDate>
		<guid isPermaLink="false">http://inchoo.net/?p=3567#comment-8943</guid>
		<description>ABOVE CODE IS NOT WORKING ON CONTROLLER FILE ..WORKING FILE WITH THE VEIW.PHTML
CAN U TELL ME WHERE AM I WRONG</description>
		<content:encoded><![CDATA[<p>ABOVE CODE IS NOT WORKING ON CONTROLLER FILE ..WORKING FILE WITH THE VEIW.PHTML<br />
CAN U TELL ME WHERE AM I WRONG</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mage Nation</title>
		<link>http://inchoo.net/ecommerce/magento/programatically-add-bundle-product-to-cart-n-magento/comment-page-1/#comment-8926</link>
		<dc:creator>Mage Nation</dc:creator>
		<pubDate>Wed, 03 Nov 2010 22:24:07 +0000</pubDate>
		<guid isPermaLink="false">http://inchoo.net/?p=3567#comment-8926</guid>
		<description>One thing I just ran into on Enterprise v 1.9.0, if you do the following:

$newProd = Mage::getModel(&#039;catalog/product&#039;)-&gt;loadByAttribute(&#039;sku&#039;, $sku);
$cart-&gt;addProduct($newProd);

The category inventory observe throws the following exception:
Mage::throwException(Mage::helper(&#039;cataloginventory&#039;)-&gt;__(&#039;The stock item for Product is not valid.&#039;));

The stock item object it gets from the product object is a basic Varien Object.

When I do the following, it behaves nicely:
$newProd = Mage::getModel(&#039;catalog/product&#039;);
$newProd-&gt;load($newProd-&gt;getIdBySku($sku));
$cart-&gt;addProduct($newProd);

Of course, I also check $newProd-&gt;isSalable() prior to adding to the cart. Not sure exactly why it&#039;s not loading up the proper object, hopefully this helps someone else running into this!</description>
		<content:encoded><![CDATA[<p>One thing I just ran into on Enterprise v 1.9.0, if you do the following:</p>
<p>$newProd = Mage::getModel(&#8216;catalog/product&#8217;)-&gt;loadByAttribute(&#8216;sku&#8217;, $sku);<br />
$cart-&gt;addProduct($newProd);</p>
<p>The category inventory observe throws the following exception:<br />
Mage::throwException(Mage::helper(&#8216;cataloginventory&#8217;)-&gt;__(&#8216;The stock item for Product is not valid.&#8217;));</p>
<p>The stock item object it gets from the product object is a basic Varien Object.</p>
<p>When I do the following, it behaves nicely:<br />
$newProd = Mage::getModel(&#8216;catalog/product&#8217;);<br />
$newProd-&gt;load($newProd-&gt;getIdBySku($sku));<br />
$cart-&gt;addProduct($newProd);</p>
<p>Of course, I also check $newProd-&gt;isSalable() prior to adding to the cart. Not sure exactly why it&#8217;s not loading up the proper object, hopefully this helps someone else running into this!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: landykos</title>
		<link>http://inchoo.net/ecommerce/magento/programatically-add-bundle-product-to-cart-n-magento/comment-page-1/#comment-8899</link>
		<dc:creator>landykos</dc:creator>
		<pubDate>Tue, 02 Nov 2010 19:46:32 +0000</pubDate>
		<guid isPermaLink="false">http://inchoo.net/?p=3567#comment-8899</guid>
		<description>I have been trying to figure this out but was a little unsure on something. Maybe you can help me out.

The bundle option array. Are the ids in that array suppose to be the 

selection_id =&gt; option_id

or

option_id =&gt; selection_id


[code]
&#039;bundle_option&#039; =&gt; array(
        21 =&gt; 58,
        20 =&gt; 55,
        11 =&gt; 28,
        12 =&gt; array(
            0 =&gt; 31,
        ),
        13 =&gt; array(
            0 =&gt; 32,
            1 =&gt; 35,
        ),

[/code]

Also can you explain what is going on with the multidimensional array:

[code]

12 =&gt; array(
    0 =&gt; 31,
),
[/code]

Is this how we can add qty to the options? If so what do the numbers represent?

Any help would be great!!

Thanks!!
Landy</description>
		<content:encoded><![CDATA[<p>I have been trying to figure this out but was a little unsure on something. Maybe you can help me out.</p>
<p>The bundle option array. Are the ids in that array suppose to be the </p>
<p>selection_id =&gt; option_id</p>
<p>or</p>
<p>option_id =&gt; selection_id</p>
<pre class="brush: plain; title: ; notranslate">
'bundle_option' =&gt; array(
        21 =&gt; 58,
        20 =&gt; 55,
        11 =&gt; 28,
        12 =&gt; array(
            0 =&gt; 31,
        ),
        13 =&gt; array(
            0 =&gt; 32,
            1 =&gt; 35,
        ),
</pre>
<p>Also can you explain what is going on with the multidimensional array:</p>
<pre class="brush: plain; title: ; notranslate">

12 =&gt; array(
    0 =&gt; 31,
),
</pre>
<p>Is this how we can add qty to the options? If so what do the numbers represent?</p>
<p>Any help would be great!!</p>
<p>Thanks!!<br />
Landy</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jon</title>
		<link>http://inchoo.net/ecommerce/magento/programatically-add-bundle-product-to-cart-n-magento/comment-page-1/#comment-8501</link>
		<dc:creator>Jon</dc:creator>
		<pubDate>Fri, 01 Oct 2010 22:14:26 +0000</pubDate>
		<guid isPermaLink="false">http://inchoo.net/?p=3567#comment-8501</guid>
		<description>Anyone know how to do this on the backend? So I can create an order with simple products no problem, but haven&#039;t been able to figure out how to do it with bundle products.... Any help would be greatly appreciated.</description>
		<content:encoded><![CDATA[<p>Anyone know how to do this on the backend? So I can create an order with simple products no problem, but haven&#8217;t been able to figure out how to do it with bundle products&#8230;. Any help would be greatly appreciated.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sean</title>
		<link>http://inchoo.net/ecommerce/magento/programatically-add-bundle-product-to-cart-n-magento/comment-page-1/#comment-7263</link>
		<dc:creator>Sean</dc:creator>
		<pubDate>Thu, 10 Jun 2010 18:47:41 +0000</pubDate>
		<guid isPermaLink="false">http://inchoo.net/?p=3567#comment-7263</guid>
		<description>This is a big help!

What about &quot;info_buyRequest&quot; options? how would you enter those into the array?  

for example, the HTML field name isn&#039;t prefixed with &quot;option_&quot;.. instead, it has a name that seems to be unique to the plugin i&#039;m using.

[code]

	custom date option:
	

[/code]

I&#039;ve tried a dozen different ways to add these custom fields to the &quot;params&quot; array without success...

Thanks for any insight!
Sean</description>
		<content:encoded><![CDATA[<p>This is a big help!</p>
<p>What about &#8220;info_buyRequest&#8221; options? how would you enter those into the array?  </p>
<p>for example, the HTML field name isn&#8217;t prefixed with &#8220;option_&#8221;.. instead, it has a name that seems to be unique to the plugin i&#8217;m using.</p>
<pre class="brush: plain; title: ; notranslate">

	custom date option:
</pre>
<p>I&#8217;ve tried a dozen different ways to add these custom fields to the &#8220;params&#8221; array without success&#8230;</p>
<p>Thanks for any insight!<br />
Sean</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mitch Viner</title>
		<link>http://inchoo.net/ecommerce/magento/programatically-add-bundle-product-to-cart-n-magento/comment-page-1/#comment-6271</link>
		<dc:creator>Mitch Viner</dc:creator>
		<pubDate>Mon, 22 Feb 2010 06:16:45 +0000</pubDate>
		<guid isPermaLink="false">http://inchoo.net/?p=3567#comment-6271</guid>
		<description>Thanks for this. Just saved me, I know a good 10 hours of reading, then try / undo / try again!

Only thing I would add is if any options are using the select or multi-select type, you&#039;ll need to pass the id(will be integer) of those, not the value.</description>
		<content:encoded><![CDATA[<p>Thanks for this. Just saved me, I know a good 10 hours of reading, then try / undo / try again!</p>
<p>Only thing I would add is if any options are using the select or multi-select type, you&#8217;ll need to pass the id(will be integer) of those, not the value.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bhavesh Dave</title>
		<link>http://inchoo.net/ecommerce/magento/programatically-add-bundle-product-to-cart-n-magento/comment-page-1/#comment-6178</link>
		<dc:creator>Bhavesh Dave</dc:creator>
		<pubDate>Thu, 11 Feb 2010 13:34:59 +0000</pubDate>
		<guid isPermaLink="false">http://inchoo.net/?p=3567#comment-6178</guid>
		<description>Thans bro..!
its help me a lot..</description>
		<content:encoded><![CDATA[<p>Thans bro..!<br />
its help me a lot..</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jon</title>
		<link>http://inchoo.net/ecommerce/magento/programatically-add-bundle-product-to-cart-n-magento/comment-page-1/#comment-6118</link>
		<dc:creator>Jon</dc:creator>
		<pubDate>Sat, 06 Feb 2010 00:43:28 +0000</pubDate>
		<guid isPermaLink="false">http://inchoo.net/?p=3567#comment-6118</guid>
		<description>First of all, thank you. Second, I had to do:
$session = Mage::getSingleton(&#039;core/session&#039;, array(&#039;name&#039;=&gt;&#039;frontend&#039;));

in order for this to work - just wanted to post in case that may help someone in the future.</description>
		<content:encoded><![CDATA[<p>First of all, thank you. Second, I had to do:<br />
$session = Mage::getSingleton(&#8216;core/session&#8217;, array(&#8216;name&#8217;=&gt;&#8217;frontend&#8217;));</p>
<p>in order for this to work &#8211; just wanted to post in case that may help someone in the future.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sean</title>
		<link>http://inchoo.net/ecommerce/magento/programatically-add-bundle-product-to-cart-n-magento/comment-page-1/#comment-5797</link>
		<dc:creator>Sean</dc:creator>
		<pubDate>Thu, 07 Jan 2010 08:23:13 +0000</pubDate>
		<guid isPermaLink="false">http://inchoo.net/?p=3567#comment-5797</guid>
		<description>This is very helpful, but I have a question. Do you first need to create all these options for the bundle product? I am looking for a way to dynamically build a bundle product where someone can choose hundreds of options for each component. Essentially, I&#039;d like for a customer to be able to choose from the entire &quot;DDR2 Memory&quot; category instead of choosing preselected options.</description>
		<content:encoded><![CDATA[<p>This is very helpful, but I have a question. Do you first need to create all these options for the bundle product? I am looking for a way to dynamically build a bundle product where someone can choose hundreds of options for each component. Essentially, I&#8217;d like for a customer to be able to choose from the entire &#8220;DDR2 Memory&#8221; category instead of choosing preselected options.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

