Help for this page

Select Code to Download


  1. or download this
    if ($condition)
        do_something();
    
  2. or download this
    do_something() if $condition;
    
  3. or download this
    if ($condition)
    {
        do_something();
    }