in reply to Re: How do I check the Status of an image file created from a script on another web server?
in thread How do I check the Status of an image file created from a script on another web server?

Thanx for your input Sam.

Does anyone know how to grab the image from the external server, like in my example and bring it into a PERL Script do grab the Digest::MD5 signature.

Thanx,
Jason
  • Comment on Re^2: How do I check the Status of an image file created from a script on another web server?

Replies are listed 'Best First'.
Re^3: How do I check the Status of an image file created from a script on another web server?
by holli (Abbot) on Jan 02, 2005 at 00:38 UTC
    use LWP::Simple; use Digest::MD5 qw(md5); print md5(get("http://promote.pair.com/i/pair-banner-current.gif"));