Help for this page

Select Code to Download


  1. or download this
    <Directory /www/htdocs/myapp>
    
    ...
            SetHandler perl-script
            PerlHandler HTML::Mason
    </Directory>
    
  2. or download this
    package HTML::Mason;
    use HTML::Mason;
    ...
        return $status;
    }
    1;
    
  3. or download this
    CREATE TABLE sessions
    (
      id CHAR(32) NOT NULL PRIMARY KEY,
      a_session TEXT
    );