This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Alice & Bob Usefull Commands | |
========== | |
powered by Alice + Bob 2015 | |
## What you need to do after git pull: | |
all commands are to be executed from project root as developer | |
1. stop queue consumers |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<? | |
include 'spreadsheet.php'; | |
$Spreadsheet = new Spreadsheet("[email protected]", "password"); | |
$Spreadsheet-> | |
setSpreadsheet("Tester")-> | |
setWorksheet("Sheet1")-> | |
add(array("Header 1" => "Cell 1", "Header 2" => "Cell 2")); | |
?> |