Skip to content

Instantly share code, notes, and snippets.

@goelvibhor4
goelvibhor4 / gist:f4bcec8229cacb299ae6b0bd0c96041e
Created August 27, 2017 16:39 — forked from paulallies/gist:0052fab554b14bbfa3ef
Remove node_modules from git repo
#add 'node_modules' to .gitignore file
git rm -r --cached node_modules
git commit -m 'Remove the now ignored directory node_modules'
git push origin master
@goelvibhor4
goelvibhor4 / PHPExcel_Basics.md
Created June 10, 2016 11:00 — forked from r-sal/PHPExcel_Basics.md
PHPExcel Notes and code snippets

Basics

Creating a new PHPExcel Object.

    $this->PHPExcel = new PHPExcel();

Working with sheets

Creating a new sheet: