# WWW-WebExcel **Repository Path**: mirrors_gitpan/WWW-WebExcel ## Basic Information - **Project Name**: WWW-WebExcel - **Description**: Read-only release history for WWW-WebExcel - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-10-20 - **Last Updated**: 2026-01-25 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README WWW-WebExcel version 0.03 ========================= This module is used to show data in excel-files in the web. It can be used to provide the results of a database query as an excel-file. It does not provide cell-formats yet, but the module will be extended within the next weeks. Compared to version 0.01 there are two new methods in 0.02: * add_row appends new rows to the existing ones * set_headers replaces the existing list of headers Delta from 0.03 to 0.02: * add_row_at inserts a row into existing data * sort_data sorts the data As a simple example: binmode(\*STDOUT); my @data; $sth->execute() or die $DBI::errstr; while(my @row = $sth->fetchrow_array()){ push(@data,\@row); } my $worksheet = ['NAME',{-data => \@data}] my $excel = WWW::WebExcel->new(-worksheets => [$worksheet]); $excel->output(); INSTALLATION To install this module type the following: perl Makefile.PL make make test make install DEPENDENCIES This module requires these other modules and libraries: Spreadsheet::WriteExcel COPYRIGHT AND LICENCE Put the correct copyright and licence information here. Copyright (C) 2004 by Renee Baecker This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.6.1 or, at your option, any later version of Perl 5 you may have available.