in reply to Problems with print ID command
The key being END must be on a line by itself#!/usr/local/bin/perl -w use strict; print "Content-type:text/html\n\n"; print <<END; <html> <body> Bla bla bla </body> </html> END print "This is the next line of code";
|
---|