by treewalkerlabs | May 19, 2017 | PHP
Few days back I was looking for merging the multiple excel file, located at some specific path, in single excel file. To achieve that I used the library “PHPExcel”. If you can download the git by clicking the below link Download PHPExcel To start with , you can...by treewalkerlabs | Apr 19, 2017 | Magento, PHP
Few days back I was supposed to integrate pdf library to generate invoice pdf instead of Zend Pdf. For that I tried to override the Invoice print action . Below are the steps you need to follow to override magento admin controller. STEP 1 : Create simple module Eg...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”]...