Help for this page

Select Code to Download


  1. or download this
    create table quiz_questions (
        quiz_question_id     serial not null primary key,
        question             TEXT 
    );
    
  2. or download this
    create table quiz_answer(
       quiz_ansswer_id       SERIAL not null primary key,
    ...
        quiz_answer          text not null,
        correct_answer       boolean not null default 'false'
    );
    
  3. or download this
    
    |
    ...
                -linebreaks => 'true'
        ),br;
        print submit;
    
  4. or download this
    use CGI;
    my $cgi = new CGI;
    ...
    } else {
        | ditto
    }