Help for this page

Select Code to Download


  1. or download this
    if ($mb_award > 0) {
      $mb_amount_disp = $mb_award;
    } elsif ($mb_accept > 0) {
      $mb_amount_disp = $mb_accept;
    }
    
  2. or download this
    $mb_amount_disp = $mb_award > 0 ? $mb_award : $mb_accept;