- or download this
# form that submits to kon.cgi
Do you want to change data for $clrNr?
[ Yes ] [ No ]
- or download this
# form that submits to kon.cgi
Do you want to change data for $clrNr?
...
# form that submits to kon_add.html
[ No ]
- or download this
print $qry->start_form(-action => "http://skinnmaskin/cgi-bin/kon.cgi"
+);
print $qry->h4("Vill du \xE4ndra data f\xF6r $clrNr ?<br>");
...
print $qry->start_form(-action => "http://skinnmaskin/mx/kon_add.html"
+);
print $qry->submit(-name =>'andra', -value=>'Nej');
print $qry->end_form;
- or download this
print $qry->submit('Andra', 'Ja'), $qry->submit(-name =>'addera', -val
+ue=>'Nej');
- or download this
if ($qry->param('addera')) {
# the "no" button was clicked
print $qry->redirect('http://skinnmaskin/mx/kon_add.html');
exit 0;
}