Add the
  • tag to make our lists more compact by pushing onto the @CGI::Pretty::AS_IS array: : HTML « CGI « Perl
  • Perl
    1. Array
    2. CGI
    3. Class
    4. Data Type
    5. Database
    6. File
    7. GUI
    8. Hash
    9. Language Basics
    10. Network
    11. Regular Expression
    12. Report
    13. Statement
    14. String
    15. Subroutine
    16. System Functions
    17. Win32
    18. XML
    Java
    Java Tutorial
    Java Source Code / Java Documentation
    Java Open Source
    Jar File Download
    Java Articles
    Java Products
    Java by API
    Photoshop Tutorials
    Maya Tutorials
    Flash Tutorials
    3ds-Max Tutorials
    Illustrator Tutorials
    GIMP Tutorials
    C# / C Sharp
    C# / CSharp Tutorial
    C# / CSharp Open Source
    ASP.Net
    ASP.NET Tutorial
    JavaScript DHTML
    JavaScript Tutorial
    JavaScript Reference
    HTML / CSS
    HTML CSS Reference
    C / ANSI-C
    C Tutorial
    C++
    C++ Tutorial
    Ruby
    PHP
    Python
    Python Tutorial
    Python Open Source
    SQL Server / T-SQL
    SQL Server / T-SQL Tutorial
    Oracle PL / SQL
    Oracle PL/SQL Tutorial
    PostgreSQL
    SQL / MySQL
    MySQL Tutorial
    VB.Net
    VB.Net Tutorial
    Flash / Flex / ActionScript
    VBA / Excel / Access / Word
    XML
    XML Tutorial
    Microsoft Office PowerPoint 2007 Tutorial
    Microsoft Office Excel 2007 Tutorial
    Microsoft Office Word 2007 Tutorial
    Perl » CGI » HTML 
    Add the
  • tag to make our lists more compact by pushing onto the @CGI::Pretty::AS_IS array:
  •     

    #!/usr/bin/perl
    use warnings;
    use strict;
    use CGI::Pretty qw(:standard);
    $CGI::Pretty::INDENT=" ";
    push @CGI::Pretty::AS_IS,"LI";
    my $cgi=new CGI::Pretty;
    print header,
    start_html("Pretty HTML Demo"),
    ol(li(["First","Second","Third"])),
    end_html;

       
        
        
        
      
    Related examples in the same category
    1. Pretty print HTML code
    2. Generating HTML Programmatically
    3. Generating HTML
    4. Write CGI scripts with CGI.pm
    5. Producing Human-Readable HTML
    6. A Simple CGI Script
    7. Hello World in Function-Oriented Fashion
    8. Hello World in Object-Oriented Fashion
    9. Generates HTML with the use of CGI.pm
    10. Generates HTML with the use of CGI.pm using the conventional style
    11. Set HTML page title, author name, meta info, background color and link color
    12. Create Image map
    13. Create Frame set
    14. Header, br, ol,li
    15. Defines a title, author, base, and target for a document, plus a few metatags and a stylesheet:
    16. Using Perl code align Paragraph tag
    17. Set Textarea row and column size by using Perl CGI code
    18. Create header 1 using Perl code
    19. Authorization-required response
    20. Using Perl CGI code to set value to Textarea
    www.java2java.com | Contact Us
    Copyright 2009 - 12 Demo Source and Support. All rights reserved.
    All other trademarks are property of their respective owners.