Home : General : Perl Programming :

General: Perl Programming: Re: [shiner] cgi.pm and javascripts: Edit Log

Here is the list of edits for this post
Re: [shiner] cgi.pm and javascripts
print <<'CODE';

Some html

CODE

...should work fine. If you get an error like can't find string terminator CODE at end of EOF (or whatever it is) then it means you have a space infront of the closing tag.....eg....

Code:
print <<'CODE';

Foo

CODE

....will work.

Code:
print <<'CODE';

Foo

CODE

....won't

Last edited by:

Paul: Jun 13, 2002, 9:47 AM

Edit Log: