Help for this page

Select Code to Download


  1. or download this
    $foo = '\\some.address.or.whatever\subdir\';
    print $foo;
    
  2. or download this
    $foo = '\\some.address.or.whatever\subdir\file';
    print $foo;
    
  3. or download this
    $foo = <<'PATH'; 
    \\some.address.or.whatever\subdir\
    PATH
    print "this is a test${foo}again\ntesting";