Help for this page

Select Code to Download


  1. or download this
    $byte = '';
    if ($obj->{organization} =~ /^\s*$/)
    { $byte .= '0'; }
    ...
    { $byte .= '0'; }
    else
    { $byte .= '1'; }
    
  2. or download this
    if ($byte =~ /1(0|1){3}0{3}(0|1)/)
    { do more checks against database }
    ...
    { do other checks against database }
    else
    { produce error message }