--- In [email protected], James Keeline <[EMAIL PROTECTED]> wrote: > > --- Brian E Boothe <[EMAIL PROTECTED]> wrote: > > > if i fill out a online form that i made how can i get it to transpose > > values to an excel Spreadsheet ?? > > "Transpose" ? If you mean "how do I present PHP data as an Excel file > download?" then you can compose tab-delimited content (with lines ending in \r > for some odd reason) and provide it to the browser with an appropriate MIME > type > > header("Content-type: application/vendor.ms-excel"); > > James Keeline >
Do you have any suggestions on how to save data displayed in such a spreadsheet? Data will be exported from MySQL into tab delimited, as above, amended in an online spreadsheet, and then needs to go back into the MySQL database? All I can think of is "user saves to local disk", then upload from there, but it would be nice if there were something more elegant.
