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(*stuff);
-
- print &PrintHeader;
-
- print "<html>\n";
- print "<head> <title> Printing the x,y hot spot variables </title> </head>\n";
- print "<body>\n";
- print "<h3> The x,y coordinates of your mouse-click are: </h3> <hr noshade>";
- print "x coordinate = $stuff{'xyhot.x'}";
- print "y coordinate = $stuff{'xyhot.y'}";
-
- print "</body>\n";
- print "</html>\n";
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-