#!/usr/bin/perl use CGI::Carp qw(fatalsToBrowser); require "./cookie.lib"; require "./common.cgi"; &get_input; print "Content-type: text/html\n\n"; &get_files; exit; ######### Get files ####### sub get_files { $abs_dir = "/hsphere/local/home/karamvee/kamsart.com/clip-art/golf"; print <<__END_OF_MESSAGE__; Golf Clipart

Golf Clipart



Golf clipart - Welcome to hindilyrix's free golf clipart gallery. Here you will find collection of free golf clipart, collected from various internet sites and newsgroups, with permissions. All these free golf clipart are in public domain and can be freely used by anybody. Some of the free golf clipart is there more than ones.
Please do not link directly to the individual free golf clip art images, but link to this page.

Google Web Kamsart.com
Free Golf Clipart
  • Free Clipart
      __END_OF_MESSAGE__ print "
    • golf Clipart"; print "
        "; $total_files=0; opendir(DIR, "$abs_dir"); @files = readdir(DIR); closedir(DIR); $total_files = @files; print ""; foreach $file (@files) { unless(-d $file) { print "
      • $file
        \n"; } } print "
        "; print <<__END_OF_MESSAGE__;



__END_OF_MESSAGE__ }