| Justin Patrin 2006-04-05, 7:00 pm |
| On 4/5/06, Tendon St=E9phane <stephane.tendon@ezv.admin.ch> wrote:
> Hello,
>
> Look at your Excel-sheet in a Text Editor, and you will anderstand. You h=
ave
> HTML-Code in it. Delete it and it works.
Rather, fix your code so that it doesn't output anything else.
>
> -----Message d'origine-----
> De : Ikoer [mailto:ikoer@dream4all.com]
> Envoy=E9 : mercredi, 5. avril 2006 06:46
> =C0 : pear-general@lists.php.net
> Objet : [PEAR] Spreadsheet_Excel_Writer-0.9.0
>
>
> Hello,
>
> Today I was downloaded and installed OLE-0.5 and
> Spreadsheet_Excel_Writer-0.9.0 Package and tried to test with this
> "example1.php"
>
> <?php
> require_once 'Spreadsheet/Excel/Writer.php';
>
> // Creating a workbook
> $workbook =3D new Spreadsheet_Excel_Writer();
>
> // sending HTTP headers
> $workbook->send('test.xls');
>
> // Creating a worksheet
> $worksheet =3D& $workbook->addWorksheet('My first worksheet');
>
> // The actual data
> $worksheet->write(0, 0, 'Name');
> $worksheet->write(0, 1, 'Age');
> $worksheet->write(1, 0, 'John Smith');
> $worksheet->write(1, 1, 30);
> $worksheet->write(2, 0, 'Johann Schmidt');
> $worksheet->write(2, 1, 31);
> $worksheet->write(3, 0, 'Juan Herrera');
> $worksheet->write(3, 1, 32);
>
> // Let's send the file
> $workbook->close();
> ?>
>
> but, the "test.xls" result did not look as mention as in tutorial.
> Please let me know why the result appear like that, is there any problem =
in
> my instalaton pakage? or anything else problem?
>
> Thank You in advance...
>
> Regard's
>
> IKOER
>
>
>
--
Justin Patrin
|