For some reason I am having a heck of a time changing the background color of the the html output of a perl cgi script I am writing. This:
print "<body bgcolor=\"#0000FF\" text=\"#FFFFFF\" link=\"#FFFFFF\" vlink=\"#FFFFFF\" alink=\"#FFFFFF\">\n";
Becomes this:
<body bgcolor="#0000FF text="#FFFFFF" link="#FFFFFF" vlink="#FFFFFF" alink="#FFFFFF">
Notice the missing quote after 0000FF ...
I am very new to both Perl and CGI (I'm using Linux/Apache) so I'm sure there is a simple explanation for this.
Thanks for reading,
Meekrob
print "<body bgcolor=\"#0000FF\" text=\"#FFFFFF\" link=\"#FFFFFF\" vlink=\"#FFFFFF\" alink=\"#FFFFFF\">\n";
Becomes this:
<body bgcolor="#0000FF text="#FFFFFF" link="#FFFFFF" vlink="#FFFFFF" alink="#FFFFFF">
Notice the missing quote after 0000FF ...
I am very new to both Perl and CGI (I'm using Linux/Apache) so I'm sure there is a simple explanation for this.
Thanks for reading,
Meekrob