I am using a perl script for guestbook and am new to this.
I have an output page that is generated by the perl script in which is an Acknowledgement and Thankyou page for signing the guest book.
My question is how do I add, in code, a background tile to the html page output?
I have tried the following commands and everything outputs to the guestbook without issue - problem is the background tile is never applied to the Thankyou page generated by the code below.
# Print Beginning of HTML
print "Content-Type: text/html\n\n";
print "<html><head><title>Thank You</title></head>\n";
print "<body BACKGROUND=\"images/image001.jpg\">\n";
print "<body><h1>Thank You For Signing The Guestbook</h1>\n";
print "Thank you for filling in the guestbook. Your entry has\n";
print "been added to the guestbook.<hr>\n";
print "Here is what you submitted:<p>\n";
print "<b>$FORM{'comments'}</b><br>\n";
The code goes on to add the values collected from the html form. The line in question is the
print "<body BACKGROUND=\"images/image001.jpg\">\n";
Any help you can give me would be great. Thanks.
I have an output page that is generated by the perl script in which is an Acknowledgement and Thankyou page for signing the guest book.
My question is how do I add, in code, a background tile to the html page output?
I have tried the following commands and everything outputs to the guestbook without issue - problem is the background tile is never applied to the Thankyou page generated by the code below.
# Print Beginning of HTML
print "Content-Type: text/html\n\n";
print "<html><head><title>Thank You</title></head>\n";
print "<body BACKGROUND=\"images/image001.jpg\">\n";
print "<body><h1>Thank You For Signing The Guestbook</h1>\n";
print "Thank you for filling in the guestbook. Your entry has\n";
print "been added to the guestbook.<hr>\n";
print "Here is what you submitted:<p>\n";
print "<b>$FORM{'comments'}</b><br>\n";
The code goes on to add the values collected from the html form. The line in question is the
print "<body BACKGROUND=\"images/image001.jpg\">\n";
Any help you can give me would be great. Thanks.