Help for this page

Select Code to Download


  1. or download this
    while (some_condition_is_true()) {
        ...
    ...
        }
    
    $newTitle = $epname;  # variable does not exist here
    
  2. or download this
    my $epname;
    
    ...
        }
    
    $newTitle = $epname;  # variable exists, has value here