by treewalkerlabs | Apr 19, 2017 | Magento
This is the common requirement now of most of the customer to give the option to the end user to add the configurable product to cart from list page directly. Recently I did it for one of my client . The basic problem which we generally face while adding configurable...by treewalkerlabs | Apr 19, 2017 | Magento
Sometime we have to import the product from external csv file which is not in magento format. In those cases we would have to write some script in magento to read the csv and create the product programatically through that csv data.Below I have mentioned the way to...by treewalkerlabs | Apr 19, 2017 | MySQL, PHP
Persistent connections are links that do not close when the execution of your script ends. When a persistent connection is requested, PHP checks if there’s already an identical persistent connection (that remained open from earlier) – and if it exists, it...by treewalkerlabs | Apr 19, 2017 | PHP, XML
Some time we come accross a situation where we have to parse the xml data to array. To achieve that we have used the “SimpleXML” Library available in php. This extension is enabled by default in php. Sample xml : [codesyntax lang=”php”]...