Help for this page

Select Code to Download


  1. or download this
    sub add_user {
     if (condition) {
    ...
    if ($Result) {
     print "Something failed: $Result\n";
    }
    
  2. or download this
    sub add_user {
     if (condition) {
    ...
    if ( ! $Result) {
     print "Something failed: $Error_Text\n";
    }
    
  3. or download this
    sub add_user {
     if (condition) {
    ...
    if ($Result) {
     print "Something failed: ".$Texts{'Error_'.$Result}."\n";
    }