Help for this page

Select Code to Download


  1. or download this
        if( $fatal )
        ERR: {
            ...
        }
    
  2. or download this
        if( $fatal ) {
        OK:
    ...
        BAD:
            ... "goto BAD" from outside this block deprecated ...
        }
    
  3. or download this
        ...
        if( $whatever ) {
    ...
        return ...;
    ERR:
        ... code moved from if( $fatal ) ...