
#!/usr/bin/perl
require "cgi-lib.pl";
<body background="mylene2_copy.jpg">
$gbook = "guestbook.txt";

print "Content-type:text/html\n\n";
print "<html><body>";
print "<html><head><title>Guest Book</title></head>\n";
print "<body bgcolor=white>\n";
print "<center><font size=+2>Guest Book</font></center>\n";

open(FILE, "$gbook");
@data=<FILE>;
close(FILE);

print "@data";

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