Help for this page

Select Code to Download


  1. or download this
    if (5 == $number) {
      # ...
    }
    
  2. or download this
    if (5 = $number) {
      # ...
    }
    
  3. or download this
    if ($number = 5) {
      # ...
    }