Skip to content

Instantly share code, notes, and snippets.

View fgutr's full-sized avatar

Fernando Gutiérrez R. fgutr

  • Chile
View GitHub Profile
@fgutr
fgutr / media-query.css
Created April 16, 2021 01:08 — forked from gokulkrishh/media-query.css
CSS Media Queries for Desktop, Tablet, Mobile.
/*
##Device = Desktops
##Screen = 1281px to higher resolution desktops
*/
@media (min-width: 1281px) {
/* CSS */
@fgutr
fgutr / PHPExcel_Basics.md
Created October 23, 2020 18:50 — forked from yajra/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: