Mega Code Archive

 
Categories / Perl / Language Basics
 

The HTML tags are embedded in the here document to avoid using multiple print statements

#!/bin/perl print <<EOF;     #here document in a CGI script Content-type: text/html <HTML><HEAD><TITLE>Title</TITLE></HEAD>     <H1><CENTER>Dear!!</CENTER></H1>     </HTML> EOF