RE: [PHP] Export to Excel

2001-07-13 Thread Kurt Lieber
Easiest way is to export the data into comma-delimited format. (.csv files) Excel can import those no problem. So, you would write a php function that created a simple text file that looked like: Fieldname1,fieldname2,fieldname3 Data1,data2,data3 Etc. And excel can open that kind of file

Re: [PHP] Export to Excel

2001-07-13 Thread BELL, JASON (PB)
You could try writing the data out to a comma seperated file, and then offer the file for download. Excel understands these files, and they are plaintext, therefore easy to create. Jason Bell Jorge Alvarez [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED]... One of my clients is

RE: [PHP] Export to Excel

2001-07-13 Thread Neil Kimber
Dump to file as comma separated and then load into Excel. Excel reads comma separated files. In the file open dialog you can select file type to be .txt (csv). If you want to be really sick then you can set up an ODBC connection to a comma separated file and then use MSQuery inside Excel.

RE: [PHP] Export to Excel

2001-07-13 Thread Brady Hegberg
Here's something I found on the PHP Code Exchange: Generate Excel files from PHP by Christian Novak on 2000-11-25 11:47:24 (v for 4.0) is 1974 bytes. Small function library to generate Excel files/stream directly from PHP. http://px.sklar.com/code.html?code_id=488 I haven't tried it out...it

RE: [PHP] Export to Excel

2001-07-13 Thread Boget, Chris
Here's something I found on the PHP Code Exchange: Generate Excel files from PHP by Christian Novak on 2000-11-25 11:47:24 (v for 4.0) is 1974 bytes. Small function library to generate Excel files/stream directly from PHP. http://px.sklar.com/code.html?code_id=488 I haven't tried it

Re: [PHP] Export to Excel

2001-07-13 Thread Aaron Bennett
' [EMAIL PROTECTED]; [EMAIL PROTECTED] Cc: Jorge Alvarez [EMAIL PROTECTED] Sent: Friday, July 13, 2001 11:33 AM Subject: RE: [PHP] Export to Excel Here's something I found on the PHP Code Exchange: Generate Excel files from PHP by Christian Novak on 2000-11-25 11:47:24 (v for 4.0) is 1974 bytes

Re: [PHP] Export to Excel

2001-07-13 Thread Reuben D Budiardja
PROTECTED] To: 'Brady Hegberg' [EMAIL PROTECTED]; [EMAIL PROTECTED] Cc: Jorge Alvarez [EMAIL PROTECTED] Sent: Friday, July 13, 2001 11:33 AM Subject: RE: [PHP] Export to Excel Here's something I found on the PHP Code Exchange: Generate Excel files from PHP by Christian Novak on 2000-11-25 11