--
> From: "Boget, Chris" <[EMAIL 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
"'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:
> > G
> 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 i
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 do
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.
Anothe
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
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 right
7 matches
Mail list logo