- or download this
create table quiz_questions (
quiz_question_id serial not null primary key,
question TEXT
);
- 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'
);
- or download this
|
...
-linebreaks => 'true'
),br;
print submit;
- or download this
use CGI;
my $cgi = new CGI;
...
} else {
| ditto
}