#! /usr/bin/perl
# Converts Tab-separated DB into HTML file with Data on Separate Lines
# using $_ operator
print "<html> \n <body> \n";
open tfile, "subst3.db";
while(<tfile>)
 {
  $x = $_;
  $x =~ s/\t/<br>\n/g;
  print $x;
 }
close tfile;

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

