output.
As tigermouse says, Excel imports delimited text files quite nicely. It doesn't have to be tab delimited either - it can be any character, but I recommend you choose a character that will not appear anywhere in your data (the caret ^ often works nicely for me). For example, if you wanted a table of food types, the text file might look like this:
Fruits^Breads^Meats
Apples^Brown^Beef
Oranges^Italian^Chicken
Bananas^Foccacia^Pork
Or if you want it in html format, just add the <table>, <tr>, <td> tags around the fields as you write the output. Add <html> and <body> tags, change the extension to .html, and tada - you have a table on a webpage.
|