<?php include_once 'Spreadsheet/Excel/Writer.php'; // Tworzymy "plik" $workbook = new Spreadsheet_Excel_Writer(); // plik wysyłamy do przeglądarki (generujemy nagłówki) $workbook->send('plik.xls'); // Tworzmy arkusz $worksheet =& $workbook->addWorksheet('Mój Arkusz'); // Podajemy jakieś dane $worksheet->write(0, 0, 'Imię'); $worksheet->write(0, 1, 'Wiek'); $worksheet->write(1, 0, 'Szymon Majewski'); $worksheet->write(1, 1, '30'); $worksheet->write(2, 0, 'Adam Małysz'); $worksheet->write(2, 1, '31'); $worksheet->write(3, 0, 'Andrzej Lepper'); $worksheet->write(3, 1, '32'); // kończymy operacje $workbook->close(); ?>
błąd:
Kod
[b]Warning[/b]: main(Spreadsheet/Excel/Writer.php) [[url="http://www.php.net/manual/pl/function.main"]function.main[/url]]: failed to open stream: No such file or directory in [b]E:\SERWER\HTML\testxls.php[/b] on line [b]4[/b]
[b]Warning[/b]: main() [[url="http://www.php.net/manual/pl/function.include"]function.include[/url]]: Failed opening 'Spreadsheet/Excel/Writer.php' for inclusion (include_path='.;c:\php4\pear') in [b]E:\SERWER\HTML\testxls.php[/b] on line [b]4[/b]
[b]Fatal error[/b]: Cannot instantiate non-existent class: spreadsheet_excel_writer in [b]E:\SERWER\HTML\testxls.php[/b] on line [b]7[/b]
[b]Warning[/b]: main() [[url="http://www.php.net/manual/pl/function.include"]function.include[/url]]: Failed opening 'Spreadsheet/Excel/Writer.php' for inclusion (include_path='.;c:\php4\pear') in [b]E:\SERWER\HTML\testxls.php[/b] on line [b]4[/b]
[b]Fatal error[/b]: Cannot instantiate non-existent class: spreadsheet_excel_writer in [b]E:\SERWER\HTML\testxls.php[/b] on line [b]7[/b]