
Untitled
By: a guest on
Aug 11th, 2012 | syntax:
None | size: 0.59 KB | hits: 15 | expires: Never
Spreadsheet_Excel_Writer PEAR PHP - Generating with junk characters
// Creating a workbook
$workbook = new Spreadsheet_Excel_Writer();
// sending HTTP headers
$workbook->send('test.xls');
// Creating a worksheet
$worksheet =& $workbook->addWorksheet('My first worksheet');
// The actual data
$worksheet->write(0, 0, 'Name');
$worksheet->write(0, 1, 'Age');
// my database res
// Let's send the file
$workbook->close();