Help for this page

Select Code to Download


  1. or download this
        # Variables:
        my $pagetitle; # page's title
    ...
        $chartset="iso-8859-1";
        $default_keywords="";
        $default_description="";
    
  2. or download this
        # Variables:
        my $pagetitle;                    # page's title
    ...
        $chartset            = "iso-8859-1";
        $default_keywords    = "";
        $default_description = "";
    
  3. or download this
        my $pagetitle        = "PUT-YOUR-TITLE-HERE";
    
  4. or download this
        my %hash = (
            title       => 'PUT-YOUR-TITLE-HERE',
    ...
            description => ''
        )
        # hash values can be accessed as $hash{title} etc.