Help for this page

Select Code to Download


  1. or download this
    if ($x) {
        if ($y) {
    ...
    else {
        code;
    }
    
  2. or download this
    if ($x) { code; }
    
  3. or download this
    code if $x;
    
    long section of code
        if long test on $x;
    
  4. or download this
    if ($x)
        {
    ...
    
    if ($x)
        { code; }