in reply to Syntax error? I don't think so...

There is an error in your
print <<END_HTML
try this instead
print <<END_HTML; blah blah... blah..... END_HTML
your missing a ";" on the print statement and remember that END_HTML has to be left aligned (on the left margin).

-bn

Replies are listed 'Best First'.
Re: Re: Syntax error? I don't think so...
by ninja-joe (Monk) on Apr 27, 2002 at 16:59 UTC
    Awesome! I can't believe I didn't try a freaking semicolon... Oh well. Thanks a lot!