Help for this page

Select Code to Download


  1. or download this
    if ($query_str='') {
        ...
    }
    
  2. or download this
    if ($query_str == '') {
        ...
    }
    
  3. or download this
    if ('' == $query_str) {
        ...
    }
    
  4. or download this
    if ('' = $query_str) {
        ...
    ...
    #   Can't modify constant item in scalar assignment at example.pl line
    + 3,
    #   near "$query_str) "
    #   Execution of example.pl aborted due to compilation errors.