Re: [PHP-DB] PHP Classes to generate Excel files ?

2004-12-22 Thread Ignatius Reilly
nt: 22 December 2004 20:54 Subject: Re: [PHP-DB] PHP Classes to generate Excel files ? > > From: Stéphane Pinel <[EMAIL PROTECTED]> > > > I'm looking for PHP classes (free or cheap) that are able to generate > > Excel files (XML?) with a minimum > > of customizat

Re: [PHP-DB] PHP Classes to generate Excel files ?

2004-12-22 Thread John Holmes
> From: Stéphane Pinel <[EMAIL PROTECTED]> > I'm looking for PHP classes (free or cheap) that are able to generate > Excel files (XML?) with a minimum > of customization capabilities (styles, borders, colors...). http://www.web-aware.com/biff/ This has been around quite a while. I don't if it's

Re: RE: [PHP-DB] PHP Classes to generate Excel files ?

2004-12-22 Thread John Holmes
> From: "Bastien Koert" <[EMAIL PROTECTED]> > Don't really need a class...simply output a csv file with the correct > headers...and excel knows to open the csv files It can even be an HTML table send with Excel headers and it'll open correctly. That's the easiest way, IMO, because you can inclu

Re: [PHP-DB] PHP Classes to generate Excel files ?

2004-12-22 Thread Jochem Maas
try googling on 'php excelwriter' or 'php excel writer' if you require more than basic CVS (hint PEAR contains a class design to generate functionally rich XLS files). another cool trick (which Bastien hinted at) is to output the correct headers so that IE (its IE only i'm afraid) will star

Re: [PHP-DB] PHP Classes to generate Excel files ?

2004-12-22 Thread Stéphane Pinel
Le 22 déc. 04, à 15:12, Bastien Koert a écrit : Don't really need a class...simply output a csv file with the correct headers...and excel knows to open the csv files Yes but this way you can't get a minimum of customization features (styles, borders, colors...etc). XML Excel format can handle t

RE: [PHP-DB] PHP Classes to generate Excel files ?

2004-12-22 Thread Bastien Koert
Don't really need a class...simply output a csv file with the correct headers...and excel knows to open the csv files bastien From: Stéphane Pinel <[EMAIL PROTECTED]> To: "'PHP DB'" Subject: [PHP-DB] PHP Classes to generate Excel files ? Date: Wed, 22 Dec 2004 14:19:41 +0100 Hello, I'm looking f