Help for this page

Select Code to Download


  1. or download this
    # form that submits to kon.cgi
    Do you want to change data for $clrNr?
    
          [ Yes ]   [ No ]
    
  2. 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 ]
    
  3. 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;
    
  4. or download this
    print $qry->submit('Andra', 'Ja'), $qry->submit(-name =>'addera', -val
    +ue=>'Nej');
    
  5. or download this
    if ($qry->param('addera')) {
        # the "no" button was clicked
        print $qry->redirect('http://skinnmaskin/mx/kon_add.html');
        exit 0;
    }