in reply to Re: Re: Preventing an image from caching
in thread Preventing an image from caching
It's the simplest way i know.#!/bin/perl $image = `cat imagenameandpath`; print "Content-type: image/png\n\n"; print $image;
BTW- image/png is for png file format, substitute gif, jpeg, for others.
|
|---|