Help for this page

Select Code to Download


  1. or download this
    $url = "$From-a-Transform-of-the-Makedb.pl-Results"; 
    print "Location: $url\n\n";
    exit;
    
  2. or download this
        `perl makedb.pl > testout.txt`;
        sleep 1 while ( !(-e "testout.txt") );
    ...
    # Paste the code into a new perl file. Then in Unix:
    # $ perl x.pl 
    #-----
    
  3. or download this
    my $url = $From-a-Transform-of-the-Makedb.pl-Results; # See the code j
    +ust above
    print redirect( -URL => $url);
    
  4. or download this
    print qq~</body>~;
    blahblahcode;
    print qq~</html>~;
    
  5. or download this
        sub PrintHead {
        print qq~Content-type: text/html\n\n~;
    ...
        ~;
    }