Help for this page

Select Code to Download


  1. or download this
    $co->submit(-name=>'edit', -value=>'edit'),
    $co->submit(-name=>'preview', -value=>'preview'),
    
  2. or download this
    my $name=>$co->param('name');
    if ($name eq 'edit'){
    ...
    elsif($name eq 'preview'){
        $string="http://mywebserver/cgi-bin/preview.cgi";
        }
    
  3. or download this
    $co->start_form(-method=>'POST', -action=>"$string"),