Help for this page

Select Code to Download


  1. or download this
    if ($condition) {
        $var = 1;
    }
    
  2. or download this
    $var = 1 if $condition;
    
  3. or download this
    $vars{'example'} = 1;
    
  4. or download this
    $vars{example} = 1;
    
  5. or download this
    $vars{'example' . $count} = 1;