home *** CD-ROM | disk | FTP | other *** search
- #!/usr/bin/perl
- # NOTE: The above may have to be changed to work with your system.
-
- # Image Loader for GraphicTrak (tm)
- # Copyright (C) 1996 Jumbo Inc.
- # Written by Jon Conlon
- # modified by avs 1/2/96: call to srand; WinNT mods/comments
-
- # Location of the Image Supplier
- $location = "/bin/gdimage.supply"; ### Set this appropriately! ###
-
- # Under Windows NT, use the line below instead of the one above
- #$location = "/bin/gdimage.supply.bat";
-
- srand;
- $rn .= int(rand(999999999));
-
- # Uncomment the following line for Windows NT/Netscape; not necessary for NCSA httpd
- # (but should work anyway?)
- #print "Content-type: text/html\n\n"
-
- print "<IMG SRC=\"$location\?rn=$rn\" ALT=\"\" HEIGHT=0 WIDTH=0 VSPACE=0 HSPACE=0>\n";
-
- #eof
-