Help for this page

Select Code to Download


  1. or download this
    if ( $condition1 ) {
        if ( $condition2 ) {
    ...
    else {
        # Block2 repeated again
    }
    
  2. or download this
    {
        if ( $condition1 ) {
    ...
        }
        # Block2
    }