Help for this page

Select Code to Download


  1. or download this
    sub dummy_ad {
        my $file_ext = lc $_[0];
    ...
            print "$DUMMY_HTM\n";
        }
    }
    
  2. or download this
    %DUMMY_AD = (
     gif => "$DUMMY_GIF\n",
    ...
    sub dummy_ad {
        print $DUMMY_AD{lc $_[0]} || "$DUMMY_HTM\n";
    }