Hallo Phillip !
Die dort aufgeführten Fälle sind lediglich mögliche Ursachen dafür, daß das Script nicht funzt (ich gehe davon aus, daß Du deren Bedeutung kennst ;-).
Solltest Du innerhalb einer print Anweisung ebenfalls Anführungsstriche gesetzt haben, funzt nix mehr:
print "<table bgcolor="#CCCCCC">\n";
^ ^
So musses aussehen:
print "<table bgcolor='#CCCCCC'>\n";
oder so:
print "<table bgcolor="#CCCCCC">\n";
oder Du lässt sie ganz weg...
Oder Du machst es dir einfach (anstelle EOT darfst du auch was anderes verwenden):
print <<"EOT";
<table bgcolor="#CCCCCC">
EOT
Hoffe das hilft..
Gruss Pepe