Help for this page

Select Code to Download


  1. or download this
    $x = 99;
    ++$x;
    
  2. or download this
    $x = 99;
    ++$x;
    $x %= 100;
    
  3. or download this
    $x = 'zz';
    ++$x;
    $x = substr($x, -2);