Help for this page

Select Code to Download


  1. or download this
    <form action="recordQuote.pl">
    <input type="text" name="quote" value="" />
    <input type="submit" value="Submit" />
    </form>
    
  2. or download this
    #!/usr/bin/perl -wT
    
    ...
    open FILE, ">>rqhold.dat" or die "Can't open rqhold.dat: $!\n";
    print FILE $quote, "\n";
    close FILE;