#! /usr/bin/perl
# Converts Tab-separated DB into HTML file with Data on Separate Lines

print "<html> \n <body> \n";
open tfile, "subst3.db";
while($x = <tfile>)
 {
  $x =~ s/\t/<br>/g;
  print $x;
 }
close tfile;

print "</body> \n <html> \n";

