spewn
Programmer
- May 7, 2001
- 1,034
i have this script for perl 5.8.1 on an apache server running cpanel.
Code:
#!/usr/bin/perl
use strict;
use CGI qw(:standard);
print header();
print << "EOF";
<HTML>
<HEAD>
<title> Test Page </title>
</HEAD>
<body>
<table cellspacing=0 cellpadding=0 width=650 align=center>
<tr>
<td>test</td>
</tr>
</table>
</body>
</html>
EOF
as you can see, there is nothing really fantastic about it, but the error is still generating. any ideas?
- g