Help for this page

Select Code to Download


  1. or download this
    my $send_now_button =
        $auth{'SEND'} && $status==1 && $approved && !$send_now ?
        qq( ...blah blah ...) : '';
    
  2. or download this
    my $send_now_button;
    if ( !$auth{'SEND'} ) {
        $send_now_button = '';
    ...
            }
        }
    }