home *** CD-ROM | disk | FTP | other *** search
- #! /usr/local/bin/perl
- push (@INC, "/usr/local/business/http/accn.com/cgi-bin");
- require("cgi-lib.pl");
- &ReadParse(*customer_data);
-
- if (length($customer_data{'unique_id'}) == 0){
- $unique_id = $$ . "-" . $ENV{'REMOTE_ADDR'} . "-" . time();
- print "Set-Cookie: unique_id=$unique_id; \n";
- }
- else{
- $unique_id = $customer_data{'unique_id'};
- }
-
- print &PrintHeader;
-
- print <<"EOT";
- <html>
- <head><Title>Leading Rein Horse Supplies-Tack</title></head>
- <body>
- <h3> Each tack item featured as a thumbnail image can be clicked on
- to see special <em> <font size=+2> SALE </font></em> prices. </h3>
-
- <FORM METHOD=POST ACTION="/leading-rein/saddles.cgi">
- <input type=image src=images/cat_1.jpg align=left>
- <font size=+1>Choose from one of our many different types of saddles. </font>
- <hr noshade>
- <input type=submit name=youth value="All Purpose">
- <input type=submit name=youth value="Close Contact">
- <input type=submit name=youth value=Dressage>
- <input type=submit name=youth value=Eventing>
- <input type=submit name=youth value=Youth>
- </FORM>
- <br clear=left>
-
- <FORM METHOD=POST ACTION="/leading-rein/stirrups.cgi">
- <input type=image src=images/dadp2_10.jpg align=left>
- We have a fantastic selection of stirrups at reasonable prices. <p> Select the
- stirrup image to see our sale prices.
- <br clear=left >
- <br>
- </FORM>
-
- <FORM METHOD=POST ACTION="/leading-rein/clippers.cgi">
- <input type=image src=images/dadp2_15.jpg align=left></a>
- <INPUT TYPE=HIDDEN NAME=unique_id value="$unique_id">
- Good horse clippers can make preparation for show quick and painless. If your
- clippers are beginning to show their age, take a look at the great prices
- we have on these superb quality clippers.
- </FORM>
-
- <FORM METHOD=POST ACTION="/cgibook/leading-reing/pads.cgi">
- <input type=image src=images/dadp2_06.jpg align=left>
- Every rider knows that the saddle pad is one of the most important pieces
- of equipment for your horses comfort. A good saddle pad absorbs shock
- keep your horse comfortable and sound.
- <br clear=left >
-
- </FORM>
-
- <FORM METHOD=POST ACTION="/leading-rein/brushes.cgi">
- <input type=image src=images/dadp2_23.jpg align=left>
- You just can't survive without good brushes. Select the image on your
- left to see our latest supply and prices.
- <br clear=left >
-
- </FORM>
-
- </body>
- </html>
-
- EOT
-
-