Help for this page

Select Code to Download


  1. or download this
    ($param,$value) = split('=',$_,2);
    next unless defined $param;  # skip - no error !
    next if $NO_UNDEF_PARAMS and not defined $value;
    
  2. or download this
    ($param,$value) = split('=',$_,2);
    $value = '' unless defined $value;
    $param = unescape($param);  # "uninitialized" error !