Difference between revisions of "Tips and Tricks With Perl"

From Free Knowledge Base- The DUCK Project: information for everyone
Jump to: navigation, search
(New page: _______________________________________________________________________________ Put up a bunch of HTML without so many print statements... print <<end_html; <center> <h2...)
 
Line 1: Line 1:
_______________________________________________________________________________
+
_______________________________________________________________________________
 
   
 
   
Put up a bunch of HTML without so many print statements...
+
Put up a bunch of HTML without so many print statements...
 
   
 
   
  print <<end_html;
+
<nowiki>  print <<end_html;</nowiki>
    <center>
+
<nowiki>    <center></nowiki>
    <h2>Text Heading</h2>
+
<nowiki>    <h2>Text Heading</h2></nowiki>
    </center>
+
<nowiki>    </center></nowiki>
  end_html
+
  <nowiki> end_html</nowiki>
 +
<nowiki></nowiki>
 +
                     
 +
:*note: The final end_html must begin in text column 1, fully left justified.
 
   
 
   
*note: The final end_html must begin in text column 1, fully left justified.
+
_______________________________________________________________________________
+
_______________________________________________________________________________
+
  
  

Revision as of 21:12, 20 June 2007

_______________________________________________________________________________

Put up a bunch of HTML without so many print statements...

   print <<end_html;
     <center>
     <h2>Text Heading</h2>
     </center>
 end_html

                     
  • note: The final end_html must begin in text column 1, fully left justified.

_______________________________________________________________________________