Help for this page

Select Code to Download


  1. or download this
    my $p_sAction = $oCGI->param( "action" );
    $p_sAction = decode( 'UTF-8', $p_sAction );
    ...
    print "<html><head><meta charset=\"UTF-8\"></head>";
    print "p_sAction: #" . $p_sAction . "#<br>";
    print "1510 --- #$p_sAction# eq #$aText{'1510'}#<br><br>";
    
  2. or download this
    p_sAction: #Benutzer l&#65533;schen#
    1510 --- #Benutzer l&#65533;schen# eq #Benutzer löschen#
    
  3. or download this
    my $p_sAction = $oCGI->param( "action" );
    $p_sAction = decode( 'UTF-8', $p_sAction );
    ...
    print "p_sAction: #" . $p_sAction . "#<br>";
    $aText{'1530'} = decode( 'UTF-8', $aText{'1510'} );
    print "1510 --- #$p_sAction# eq #$aText{'1510'}#<br><br>";
    
  4. or download this
    p_sAction: #Benutzer l&#65533;schen#
    1510 --- #Benutzer l&#65533;schen# eq #Benutzer löschen#
    
  5. or download this
    my $p_sAction = $oCGI->param( "action" );
    $p_sAction = decode( 'UTF-8', $p_sAction );
    ...
    print "Content-type: text/html\n\n";
    print "p_sAction: #" . $p_sAction . "#<br>";
    print "1510 --- #$p_sAction# eq #$aText{'1510'}#<br><br>";
    
  6. or download this
    p_sAction: #Benutzer löschen#
    1530 --- #Benutzer löschen# eq #Benutzer löschen#
    
  7. or download this
    my $p_sAction = $oCGI->param( "action" );
    $p_sAction = decode( 'UTF-8', $p_sAction );
    ...
    print "p_sAction: #" . $p_sAction . "#<br>";
    $aText{'1530'} = decode( 'UTF-8', $aText{'1510'} );
    print "1510 --- #$p_sAction# eq #$aText{'1510'}#<br><br>";
    
  8. or download this
    p_sAction: #Benutzer löschen#
    1530 --- #Benutzer löschen# eq #Benutzer löschen#
    
  9. or download this
    if ( $p_sAction eq "Benutzer löschen" ){
        print "HELLO WORLD 22222 - Benutzer löschen<br>";
    }