Help for this page

Select Code to Download


  1. or download this
    $url = "http://www.website.com/test.shtml";
    
    print "Location: ",$url "\n";
    
  2. or download this
    $file="/var/apache/htdocs/test.shtml";
    open(FILE,"$file");
    ...
        print $_;
    }
    exit;