Help for this page

Select Code to Download


  1. or download this
    $parm_str = "\$" . "config->{jane}->{tel_no}, "\n";
    
    $parm_str = '$config->{jane}->{tel_no}';
    
  2. or download this
    package xmlutil;
    
    ...
      return get_ivnode(\$lNewPtr,join(DELIM,@pParm));
    
    }
    
  3. or download this
    use strict;
    
    ...
    use xmlutil;
    
    xmlutil::get_ival('jane,tel_num');
    
  4. or download this
      return $$pPtr unless $lKey;
    
      return $$pPtr->{$lKey} unless $pParm[0];