Help for this page

Select Code to Download


  1. or download this
    do_something() if ...
    
  2. or download this
    if ($some_condition) { 
        do_something();
    }
    
  3. or download this
       if ($intermediate_array[12] eq "GSM") {               
           if (grep { /^\Q$intermediate_array[11]\E$/ } @subscriber_error 
    +) {
    ...
               $MO_system_error++  if grep { /^\Q$intermediate_array[11]\E
    +$/ } @system_error;
           }
       }