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