Help for this page

Select Code to Download


  1. or download this
    relative link before my script:   directory/file.doc
    after script:   http://www.mysite.com/directory/file.doc
    
  2. or download this
    my $db = 'webpage'l';
    open(DATA, "$db") or die "File does not open: $!";
    ...
      $line =~ s?<A HREF="directory/file.doc">?<A HREF="http://www.mysite.
    +com/directory/file.doc">?g;
      print DATA $line;
    }