Help for this page

Select Code to Download


  1. or download this
    if (complicated == condition) {
        do something with the same complicated == condition
    }
    
  2. or download this
    $value = complicated == condition;
    if ($value) {
        do something with the same $value
    }
    
  3. or download this
    if ($value = complicated == condition) {
        do something with the same $value
    }