Export spreadsheet to HTML
Export spreadsheet to HTML
Out of context: Reply #5
- Started
- Last post
- 9 Responses
- vaxorcist0
export to tab-separated text file
write small PHP script
print "<table>\n";
$lines = file("file.txt");
for($i=0;$i<sizeof($lines);$i++){
$temp = $lines[$i];
$items = split("\t",$temp);
print "<TR>\n\";
for($j=0;$j<sizeof($items);$j++){
print "<TD>$items[$j]</td>\n";
}
print "</tr>\n";
}
print "</table>";- indents died... possible typo, but this is the idea.... you get very simple and controllable results.... if a coder..vaxorcist