Help for this page

Select Code to Download


  1. or download this
    if ($some_condition) {
       some_stuff();
    ...
          some_more_stuff();
       }
    }
    
  2. or download this
    if ($some_condition) {
       some_stuff();
    ...
    if ($some_condition && !$some_condition2) {
       some_more_stuff();
    }
    
  3. or download this
    IF: {
       if (some_condition) {
    ...
          some_more_stuff();
       }
    }